emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] emacs-26 13132b3 2/2: * lisp/net/tramp-sh.el (tramp-inline


From: Michael Albinus
Subject: [Emacs-diffs] emacs-26 13132b3 2/2: * lisp/net/tramp-sh.el (tramp-inline-compress-commands):
Date: Sat, 27 Oct 2018 03:22:34 -0400 (EDT)

branch: emacs-26
commit 13132b39932af0139451b9cd77a313c7a023b18e
Author: Michael Albinus <address@hidden>
Commit: Michael Albinus <address@hidden>

    * lisp/net/tramp-sh.el (tramp-inline-compress-commands):
    
    Suppress warnings about obsolete environment variable GZIP.
---
 lisp/net/tramp-sh.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/lisp/net/tramp-sh.el b/lisp/net/tramp-sh.el
index 3f83697..c304fcb 100644
--- a/lisp/net/tramp-sh.el
+++ b/lisp/net/tramp-sh.el
@@ -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"))



reply via email to

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