From: Warren Lynn Date: Wed, 14 Oct 2015 18:03:50 +0000 (+0200) Subject: Fix Bug#21562 X-Git-Tag: emacs-25.0.90~1125 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=96764333c438566b20fd381960fef77fa12eb586;p=emacs.git Fix Bug#21562 * 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 --- diff --git a/lisp/net/tramp-sh.el b/lisp/net/tramp-sh.el index 7d24b54ffcb..c02287d5ccf 100644 --- a/lisp/net/tramp-sh.el +++ b/lisp/net/tramp-sh.el @@ -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.