emacs-diffs
[Top][All Lists]
Advanced

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

master a0be0cd: Use "gzip -d" instead of "gunzip"


From: Lars Ingebrigtsen
Subject: master a0be0cd: Use "gzip -d" instead of "gunzip"
Date: Wed, 1 Sep 2021 03:38:04 -0400 (EDT)

branch: master
commit a0be0cdbd23947e59b4108125a20c7f9c800a052
Author: Marco Centurion <mcenturion@fing.edu.uy>
Commit: Lars Ingebrigtsen <larsi@gnus.org>

    Use "gzip -d" instead of "gunzip"
    
    * lisp/dired-aux.el (dired-compress-file-suffixes): Use "gzip -d"
    instead of "gunzip" since we already assume that "gzip" exists on
    the system (bug#10990).
    
    Copyright-paperwork-exempt: yes
---
 lisp/dired-aux.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lisp/dired-aux.el b/lisp/dired-aux.el
index 0b8c693..8e00af8 100644
--- a/lisp/dired-aux.el
+++ b/lisp/dired-aux.el
@@ -1137,12 +1137,12 @@ present.  A FMT of \"\" will suppress the messaging."
     ("\\.tar\\.gz\\'" "" "gzip -dc %i | tar -xf -")
     ("\\.tar\\.xz\\'" "" "xz -dc %i | tar -xf -")
     ("\\.tgz\\'" "" "gzip -dc %i | tar -xf -")
-    ("\\.gz\\'" "" "gunzip")
+    ("\\.gz\\'" "" "gzip -d")
     ("\\.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.
-    ("\\.z\\'" "" "gunzip")
+    ("\\.z\\'" "" "gzip -d")
     ("\\.dz\\'" "" "dictunzip")
     ("\\.tbz\\'" ".tar" "bunzip2")
     ("\\.bz2\\'" "" "bunzip2")



reply via email to

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