* lisp/net/tramp-sh.el (tramp-inline-compress-commands):
Suppress warnings about obsolete environment variable GZIP.
This commit is contained in:
parent
8361292fec
commit
13132b3993
1 changed files with 2 additions and 1 deletions
|
@ -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"))
|
||||
|
|
Loading…
Add table
Reference in a new issue