diff options
author | Michael Albinus <michael.albinus@gmx.de> | 2008-04-07 19:29:09 +0000 |
---|---|---|
committer | Michael Albinus <michael.albinus@gmx.de> | 2008-04-07 19:29:09 +0000 |
commit | 60f2c210c0bbbfb1b2d3085aac4159126a26836e (patch) | |
tree | 2803203753797e80b616e80700ab31b27d0cd44f /lisp | |
parent | dff6f37f72e54337f463f93c1bf22a82a62b013d (diff) | |
download | emacs-60f2c210c0bbbfb1b2d3085aac4159126a26836e.tar.gz emacs-60f2c210c0bbbfb1b2d3085aac4159126a26836e.tar.bz2 emacs-60f2c210c0bbbfb1b2d3085aac4159126a26836e.zip |
* net/tramp.el (tramp-methods): Fix again tramp-copy-args of
"pscp" and "psftp". Reported by Gilles Pion <gpion@lfdj.com>.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/net/tramp.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/net/tramp.el b/lisp/net/tramp.el index 2829d13466e..52060371d12 100644 --- a/lisp/net/tramp.el +++ b/lisp/net/tramp.el @@ -535,7 +535,7 @@ files conditionalize this setup based on the TERM environment variable." ("-ssh"))) (tramp-remote-sh "/bin/sh") (tramp-copy-program "pscp") - (tramp-copy-args (("-P") ("%p") ("-scp") ("-p" "%k"))) + (tramp-copy-args (("-P" "%p") ("-scp") ("-p" "%k"))) (tramp-copy-keep-date t) (tramp-password-end-of-line "xy") ;see docstring for "xy" (tramp-default-port 22)) @@ -544,7 +544,7 @@ files conditionalize this setup based on the TERM environment variable." ("-ssh"))) (tramp-remote-sh "/bin/sh") (tramp-copy-program "pscp") - (tramp-copy-args (("-P") ("%p") ("-sftp") ("-p" "%k"))) + (tramp-copy-args (("-P" "%p") ("-sftp") ("-p" "%k"))) (tramp-copy-keep-date t) (tramp-password-end-of-line "xy")) ;see docstring for "xy" ("fcp" (tramp-login-program "fsh") |