]> git.eshelyaron.com Git - emacs.git/commitdiff
* net/tramp.el (tramp-remote-coding-commands): Add "base64". (Bug#2463)
authorMichael Albinus <michael.albinus@gmx.de>
Thu, 26 Feb 2009 14:31:00 +0000 (14:31 +0000)
committerMichael Albinus <michael.albinus@gmx.de>
Thu, 26 Feb 2009 14:31:00 +0000 (14:31 +0000)
lisp/ChangeLog
lisp/net/tramp.el

index 850cb0961f73751510c5b308e37af0f377cbb989..d2fc55e28e88c8097f0a87802edd88600b517a53 100644 (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)
index e2e603a6b0a7a211d6f34614e917701b45b70144..fb7fc9d471bc062f296a0540609978d78479f169 100644 (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)