]> git.eshelyaron.com Git - emacs.git/commitdiff
lisp/dired-aux.el (dired-compress-file-suffixes): Add entry for tgz
authorOleh Krehel <ohwoeowho@gmail.com>
Thu, 14 Jul 2016 09:40:53 +0000 (11:40 +0200)
committerOleh Krehel <ohwoeowho@gmail.com>
Thu, 18 Aug 2016 14:11:02 +0000 (16:11 +0200)
The previous behavior resulted in a "tgz" -> "tar" -> "tgz" loop,
without any files being extracted.

lisp/dired-aux.el

index ff1f14d7a654ffaf3a0741035812027c9efaedbb..4bdded35fe57cb19c873644752f29489230549fd 100644 (file)
@@ -942,8 +942,8 @@ command with a prefix argument (the value does not matter)."
     ;; Solaris10 version of tar. Solaris10 becomes obsolete in 2021.
     ;; Same thing on AIX 7.1.
     ("\\.tar\\.gz\\'" "" "gzip -dc %i | tar -xv")
+    ("\\.tgz\\'" "" "gzip -dc %i | tar -xv")
     ("\\.gz\\'" "" "gunzip")
-    ("\\.tgz\\'" ".tar" "gunzip")
     ("\\.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.