]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix Bug#21562
authorWarren Lynn <wrn.lynn@gmail.com>
Wed, 14 Oct 2015 18:03:50 +0000 (20:03 +0200)
committerMichael Albinus <michael.albinus@gmx.de>
Wed, 14 Oct 2015 18:03:50 +0000 (20:03 +0200)
* lisp/net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
Quote argument in proper order.  (Bug#21562)

Copyright-paperwork-exempt: yes

lisp/net/tramp-sh.el

index 7d24b54ffcb80253dd17ab425bd99b02158a5a22..c02287d5ccf5160bc43daebacfb217433b3d596c 100644 (file)
@@ -4153,7 +4153,8 @@ process to set up.  VEC specifies the connection."
 
     ;; Disable tab and echo expansion.
     (tramp-message vec 5 "Setting up remote shell environment")
-    (tramp-send-command vec "stty tab0 -inlcr -onlcr -echo kill '^U' erase '^H'" t)
+    (tramp-send-command
+     vec "stty tab0 -inlcr -onlcr -echo kill '^U' erase '^H'" t)
     ;; Check whether the echo has really been disabled.  Some
     ;; implementations, like busybox of embedded GNU/Linux, don't
     ;; support disabling.