diff options
| author | Warren Lynn | 2015-10-14 20:03:50 +0200 |
|---|---|---|
| committer | Michael Albinus | 2015-10-14 20:03:50 +0200 |
| commit | 96764333c438566b20fd381960fef77fa12eb586 (patch) | |
| tree | c4b71e54037772f8176b03212d2ad21381f236cd | |
| parent | 17d4f60b55dd7998a4afffa9413c9e1731791f1a (diff) | |
| download | emacs-96764333c438566b20fd381960fef77fa12eb586.tar.gz emacs-96764333c438566b20fd381960fef77fa12eb586.zip | |
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
| -rw-r--r-- | lisp/net/tramp-sh.el | 3 |
1 files changed, 2 insertions, 1 deletions
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." | |||
| 4153 | 4153 | ||
| 4154 | ;; Disable tab and echo expansion. | 4154 | ;; Disable tab and echo expansion. |
| 4155 | (tramp-message vec 5 "Setting up remote shell environment") | 4155 | (tramp-message vec 5 "Setting up remote shell environment") |
| 4156 | (tramp-send-command vec "stty tab0 -inlcr -onlcr -echo kill '^U' erase '^H'" t) | 4156 | (tramp-send-command |
| 4157 | vec "stty tab0 -inlcr -onlcr -echo kill '^U' erase '^H'" t) | ||
| 4157 | ;; Check whether the echo has really been disabled. Some | 4158 | ;; Check whether the echo has really been disabled. Some |
| 4158 | ;; implementations, like busybox of embedded GNU/Linux, don't | 4159 | ;; implementations, like busybox of embedded GNU/Linux, don't |
| 4159 | ;; support disabling. | 4160 | ;; support disabling. |