changeset 102287:fdcbc3edbb87

* net/tramp.el (tramp-remote-coding-commands): Add "base64". (Bug#2463)
author Michael Albinus <michael.albinus@gmx.de>
date Thu, 26 Feb 2009 14:28:45 +0000
parents 56670ab44a20
children 254c772b313f
files lisp/net/tramp.el
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/net/tramp.el	Thu Feb 26 13:27:28 2009 +0000
+++ b/lisp/net/tramp.el	Thu Feb 26 14:28:45 2009 +0000
@@ -6124,7 +6124,8 @@
 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)