diff options
Diffstat (limited to 'lisp/net/tramp-sh.el')
-rw-r--r-- | lisp/net/tramp-sh.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/net/tramp-sh.el b/lisp/net/tramp-sh.el index 956fe2ddb73..11ee0639988 100644 --- a/lisp/net/tramp-sh.el +++ b/lisp/net/tramp-sh.el @@ -4492,7 +4492,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")) |