projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
228ca5a
)
Make dired recognize .lz files
author
Lars Ingebrigtsen
<larsi@gnus.org>
Fri, 23 Aug 2019 03:31:17 +0000
(
05:31
+0200)
committer
Lars Ingebrigtsen
<larsi@gnus.org>
Fri, 23 Aug 2019 03:31:17 +0000
(
05:31
+0200)
* lisp/dired-aux.el (dired-compress-file-suffixes): Recognize .lz
(lzip) compressed files (bug#37136).
lisp/dired-aux.el
patch
|
blob
|
history
diff --git
a/lisp/dired-aux.el
b/lisp/dired-aux.el
index 6c06d841e7d4841c86da5fec5891dbd00c0502a0..a321247b0b6e68f4e80c038e485066da7ad6cf39 100644
(file)
--- a/
lisp/dired-aux.el
+++ b/
lisp/dired-aux.el
@@
-992,6
+992,7
@@
command with a prefix argument (the value does not matter)."
("\\.tar\\.gz\\'" "" "gzip -dc %i | tar -xf -")
("\\.tgz\\'" "" "gzip -dc %i | tar -xf -")
("\\.gz\\'" "" "gunzip")
+ ("\\.lz\\'" "" "lzip -d")
("\\.Z\\'" "" "uncompress")
;; For .z, try gunzip. It might be an old gzip file,
;; or it might be from compact? pack? (which?) but gunzip handles both.