projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8361292
)
* lisp/net/tramp-sh.el (tramp-inline-compress-commands):
author
Michael Albinus
<michael.albinus@gmx.de>
Sat, 27 Oct 2018 07:22:18 +0000
(09:22 +0200)
committer
Michael 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
patch
|
blob
|
history
diff --git
a/lisp/net/tramp-sh.el
b/lisp/net/tramp-sh.el
index 3f83697c6bf043166119ded5d794767b5d587a97..c304fcb7aa3639e34f6355e9ccecf86ba315e2ab 100644
(file)
--- 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"))