1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-29 07:58:28 +00:00

* net/tramp.el (tramp-methods): Move hostname to the end in all

plink `tramp-login-args'.
This commit is contained in:
Michael Albinus 2010-07-23 15:58:52 +02:00
parent 84bc68f289
commit 225d5e9e16
2 changed files with 13 additions and 8 deletions

View File

@ -1,3 +1,8 @@
2010-07-23 Michael Albinus <michael.albinus@gmx.de>
* net/tramp.el (tramp-methods): Move hostname to the end in all
plink `tramp-login-args'.
2010-07-23 Michael Albinus <michael.albinus@gmx.de>
* net/tramp.el (tramp-open-shell): New defun.

View File

@ -599,8 +599,8 @@ detected as prompt when being sent on echoing hosts, therefore.")
(tramp-copy-keep-date nil)
(tramp-password-end-of-line nil))
("plink" (tramp-login-program "plink")
(tramp-login-args (("%h") ("-l" "%u") ("-P" "%p")
("-ssh")))
(tramp-login-args (("-l" "%u") ("-P" "%p")
("-ssh") ("%h")))
(tramp-remote-sh "/bin/sh")
(tramp-copy-program nil)
(tramp-copy-args nil)
@ -609,8 +609,8 @@ detected as prompt when being sent on echoing hosts, therefore.")
(tramp-default-port 22))
("plink1"
(tramp-login-program "plink")
(tramp-login-args (("%h") ("-l" "%u") ("-P" "%p")
("-1" "-ssh")))
(tramp-login-args (("-l" "%u") ("-P" "%p")
("-1" "-ssh") ("%h")))
(tramp-remote-sh "/bin/sh")
(tramp-copy-program nil)
(tramp-copy-args nil)
@ -633,8 +633,8 @@ detected as prompt when being sent on echoing hosts, therefore.")
(tramp-copy-keep-date nil)
(tramp-password-end-of-line nil))
("pscp" (tramp-login-program "plink")
(tramp-login-args (("%h") ("-l" "%u") ("-P" "%p")
("-ssh")))
(tramp-login-args (("-l" "%u") ("-P" "%p")
("-ssh") ("%h")))
(tramp-remote-sh "/bin/sh")
(tramp-copy-program "pscp")
(tramp-copy-args (("-P" "%p") ("-scp") ("-p" "%k")))
@ -642,8 +642,8 @@ detected as prompt when being sent on echoing hosts, therefore.")
(tramp-password-end-of-line "xy") ;see docstring for "xy"
(tramp-default-port 22))
("psftp" (tramp-login-program "plink")
(tramp-login-args (("%h") ("-l" "%u") ("-P" "%p")
("-ssh")))
(tramp-login-args (("-l" "%u") ("-P" "%p")
("-ssh") ("%h")))
(tramp-remote-sh "/bin/sh")
(tramp-copy-program "pscp")
(tramp-copy-args (("-P" "%p") ("-sftp") ("-p" "%k")))