memory-leaks

Still reachable: lots of words in many pages.
git clone https://git.kevinlegouguec.net/memory-leaks
Log | Files | Refs | README | LICENSE

commit af309709e9d7154a3a0c081f77d8ddae870ffbcc
parent 36dc72e659c98e8e2e734d89ff77433c27752f6d
Author: Kévin Le Gouguec <kevin.legouguec@gmail.com>
Date:   Fri, 30 Nov 2018 11:03:30 +0100

Add itch with Emacs's tar mode

Diffstat:
Mpersonal/itches.md | 7+++++++
1 file changed, 7 insertions(+), 0 deletions(-)

diff --git a/personal/itches.md b/personal/itches.md @@ -47,6 +47,13 @@ - use compilation-mode-line-… faces for compilation-num-… indicators - "é" is not erased with a single DEL stroke, despite [Unicode conventions] +- sort tar archive members by name; serving suggestion: + + ``` elisp + (defun my/tar-sort (info) + (sort info (lambda (a b) (string< (tar-header-name a) (tar-header-name b))))) + ;; Apply to tar-parse-info in tar-summarize-buffer. + ``` [bug#30008]: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=30008 [Unicode conventions]: https://lists.gnu.org/archive/html/emacs-devel/2018-07/msg00961.html