]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/net/tramp-sh.el (tramp-inline-compress-commands):
authorMichael Albinus <michael.albinus@gmx.de>
Sat, 27 Oct 2018 07:22:18 +0000 (09:22 +0200)
committerMichael Albinus <michael.albinus@gmx.de>
Sat, 27 Oct 2018 07:22:18 +0000 (09:22 +0200)
Suppress warnings about obsolete environment variable GZIP.

lisp/net/tramp-sh.el

index 3f83697c6bf043166119ded5d794767b5d587a97..c304fcb7aa3639e34f6355e9ccecf86ba315e2ab 100644 (file)
@@ -4436,7 +4436,8 @@ means discard it)."
     (if (stringp output) (concat " >" output) ""))))
 
 (defconst tramp-inline-compress-commands
-  '(("gzip" "gzip -d")
+  '(;; Suppress warnings about obsolete environment variable GZIP.
+    ("env GZIP= gzip" "env GZIP= gzip -d")
     ("bzip2" "bzip2 -d")
     ("xz" "xz -d")
     ("compress" "compress -d"))