emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master 7cc970e: Add support for dired compressing .lz/.lzo files


From: Lars Ingebrigtsen
Subject: master 7cc970e: Add support for dired compressing .lz/.lzo files
Date: Sat, 23 Jan 2021 18:34:57 -0500 (EST)

branch: master
commit 7cc970e7e3939672ec8ae490fff8300395e16b76
Author: Jean Louis <bugs@gnu.support>
Commit: Lars Ingebrigtsen <larsi@gnus.org>

    Add support for dired compressing .lz/.lzo files
    
    * lisp/dired-aux.el (dired-compress-files-alist): Add support for
    .lz/.lzo files (bug#44901).
---
 lisp/dired-aux.el | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/lisp/dired-aux.el b/lisp/dired-aux.el
index f860743..c765e4b 100644
--- a/lisp/dired-aux.el
+++ b/lisp/dired-aux.el
@@ -1168,6 +1168,8 @@ ARGS are command switches passed to PROGRAM.")
     ("\\.tar\\.bz2\\'" . "tar -cf - %i | bzip2 -c9 > %o")
     ("\\.tar\\.xz\\'" . "tar -cf - %i | xz -c9 > %o")
     ("\\.tar\\.zst\\'" . "tar -cf - %i | zstd -19 -o %o")
+    ("\\.tar\\.lz\\'" . "tar -cf - %i | lzip -c9 > %o")
+    ("\\.tar\\.lzo\\'" . "tar -cf - %i | lzop -c9 > %o")
     ("\\.zip\\'" . "zip %o -r --filesync %i")
     ("\\.pax\\'" . "pax -wf %o %i"))
   "Control the compression shell command for `dired-do-compress-to'.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]