* net/tramp.el (tramp-remote-coding-commands): Add "base64". (Bug#2463)

This commit is contained in:
Michael Albinus 2009-02-26 14:31:00 +00:00
parent f8d7c2d119
commit 3dc847a379
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2009-02-26 Michael Albinus <michael.albinus@gmx.de>
* net/tramp.el (tramp-remote-coding-commands): Add
"base64". (Bug#2463)
2009-02-26 Juanma Barranquero <lekktu@gmail.com>
* x-dnd.el (x-dnd-test-function, x-dnd-get-state-cons-for-frame)

View file

@ -6124,7 +6124,8 @@ and end of region, and are expected to replace the region contents
with the encoded or decoded results, respectively.")
(defconst tramp-remote-coding-commands
'((b64 "mimencode -b" "mimencode -u -b")
'((b64 "base64" "base64 -d")
(b64 "mimencode -b" "mimencode -u -b")
(b64 "mmencode -b" "mmencode -u -b")
(b64 "recode data..base64" "recode base64..data")
(b64 tramp-perl-encode-with-module tramp-perl-decode-with-module)