]> git.eshelyaron.com Git - emacs.git/commitdiff
Add support for dired compressing .lz/.lzo files
authorJean Louis <bugs@gnu.support>
Sat, 23 Jan 2021 23:34:44 +0000 (00:34 +0100)
committerLars Ingebrigtsen <larsi@gnus.org>
Sat, 23 Jan 2021 23:34:51 +0000 (00:34 +0100)
* lisp/dired-aux.el (dired-compress-files-alist): Add support for
.lz/.lzo files (bug#44901).

lisp/dired-aux.el

index f860743a06669d6ddb78aa7b27310f8e371ed1fb..c765e4be45dfc7287f2c9050867a94cf267da51b 100644 (file)
@@ -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'.