[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] master 6aab45b: Make dired recognize .lz files
From: |
Lars Ingebrigtsen |
Subject: |
[Emacs-diffs] master 6aab45b: Make dired recognize .lz files |
Date: |
Thu, 22 Aug 2019 23:31:22 -0400 (EDT) |
branch: master
commit 6aab45bffc616efc938d7bcdb3a18c206f389a2c
Author: Lars Ingebrigtsen <address@hidden>
Commit: Lars Ingebrigtsen <address@hidden>
Make dired recognize .lz files
* lisp/dired-aux.el (dired-compress-file-suffixes): Recognize .lz
(lzip) compressed files (bug#37136).
---
lisp/dired-aux.el | 1 +
1 file changed, 1 insertion(+)
diff --git a/lisp/dired-aux.el b/lisp/dired-aux.el
index 6c06d84..a321247 100644
--- 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.
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] master 6aab45b: Make dired recognize .lz files,
Lars Ingebrigtsen <=