]> git.eshelyaron.com Git - emacs.git/commitdiff
Make dired recognize .lz files
authorLars Ingebrigtsen <larsi@gnus.org>
Fri, 23 Aug 2019 03:31:17 +0000 (05:31 +0200)
committerLars 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

index 6c06d841e7d4841c86da5fec5891dbd00c0502a0..a321247b0b6e68f4e80c038e485066da7ad6cf39 100644 (file)
@@ -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.