[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: tramp (2.2.13.25.2); setting GZIP environment variable breaks tramp
From: |
Francesco Potortì |
Subject: |
Re: tramp (2.2.13.25.2); setting GZIP environment variable breaks tramp |
Date: |
Mon, 29 Oct 2018 16:36:30 +0100 |
>diff --git a/lisp/tramp-sh.el b/lisp/tramp-sh.el
>index 3f83697..19773e3 100644
>--- a/lisp/tramp-sh.el
>+++ b/lisp/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 env variable GZIP.
>+ ("env GZIP= gzip" "env GZIP= gzip -d")
> ("bzip2" "bzip2 -d")
> ("xz" "xz -d")
> ("compress" "compress -d"))
I applied it and the problem I had observed has gone. Thanks