diff options
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/net/tramp-sh.el | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index b20f3e157c3..d748c1a967c 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2011-09-19 Michael Albinus <michael.albinus@gmx.de> | ||
| 2 | |||
| 3 | * net/tramp-sh.el (tramp-inline-compress-commands): Add "xz". | ||
| 4 | Suggested by Liam Stitt <stittl@cuug.ab.ca>. | ||
| 5 | |||
| 1 | 2011-09-18 Juri Linkov <juri@jurta.org> | 6 | 2011-09-18 Juri Linkov <juri@jurta.org> |
| 2 | 7 | ||
| 3 | * buff-menu.el (Buffer-menu-mode-map): | 8 | * buff-menu.el (Buffer-menu-mode-map): |
diff --git a/lisp/net/tramp-sh.el b/lisp/net/tramp-sh.el index e50bb8498db..e94581392fa 100644 --- a/lisp/net/tramp-sh.el +++ b/lisp/net/tramp-sh.el | |||
| @@ -4025,6 +4025,7 @@ means discard it)." | |||
| 4025 | (defconst tramp-inline-compress-commands | 4025 | (defconst tramp-inline-compress-commands |
| 4026 | '(("gzip" "gzip -d") | 4026 | '(("gzip" "gzip -d") |
| 4027 | ("bzip2" "bzip2 -d") | 4027 | ("bzip2" "bzip2 -d") |
| 4028 | ("xz" "xz -d") | ||
| 4028 | ("compress" "compress -d")) | 4029 | ("compress" "compress -d")) |
| 4029 | "List of compress and decompress commands for inline transfer. | 4030 | "List of compress and decompress commands for inline transfer. |
| 4030 | Each item is a list that looks like this: | 4031 | Each item is a list that looks like this: |