From: Michael Albinus Date: Thu, 26 Feb 2009 14:31:00 +0000 (+0000) Subject: * net/tramp.el (tramp-remote-coding-commands): Add "base64". (Bug#2463) X-Git-Tag: emacs-pretest-23.0.92~442 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3dc847a379c2b5538dcc857ac5fd16b86c8d0e54;p=emacs.git * net/tramp.el (tramp-remote-coding-commands): Add "base64". (Bug#2463) --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 850cb0961f7..d2fc55e28e8 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2009-02-26 Michael Albinus + + * net/tramp.el (tramp-remote-coding-commands): Add + "base64". (Bug#2463) + 2009-02-26 Juanma Barranquero * x-dnd.el (x-dnd-test-function, x-dnd-get-state-cons-for-frame) diff --git a/lisp/net/tramp.el b/lisp/net/tramp.el index e2e603a6b0a..fb7fc9d471b 100644 --- a/lisp/net/tramp.el +++ b/lisp/net/tramp.el @@ -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)