aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Albinus2010-07-23 15:58:52 +0200
committerMichael Albinus2010-07-23 15:58:52 +0200
commit225d5e9e16070f908c22e1b40bf9db29fdf17c20 (patch)
tree5ace4022769ac46e369828b5bf9119b2ec2c8832
parent84bc68f28928824175ab4f3e3763e6b18868988e (diff)
downloademacs-225d5e9e16070f908c22e1b40bf9db29fdf17c20.tar.gz
emacs-225d5e9e16070f908c22e1b40bf9db29fdf17c20.zip
* net/tramp.el (tramp-methods): Move hostname to the end in all
plink `tramp-login-args'.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/net/tramp.el16
2 files changed, 13 insertions, 8 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index a4a0fa5c873..02e75a40b21 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,10 @@
12010-07-23 Michael Albinus <michael.albinus@gmx.de> 12010-07-23 Michael Albinus <michael.albinus@gmx.de>
2 2
3 * net/tramp.el (tramp-methods): Move hostname to the end in all
4 plink `tramp-login-args'.
5
62010-07-23 Michael Albinus <michael.albinus@gmx.de>
7
3 * net/tramp.el (tramp-open-shell): New defun. 8 * net/tramp.el (tramp-open-shell): New defun.
4 (tramp-find-shell, tramp-open-connection-setup-interactive-shell): 9 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
5 Use it. 10 Use it.
diff --git a/lisp/net/tramp.el b/lisp/net/tramp.el
index 0afc4c95799..2a4f57e2045 100644
--- a/lisp/net/tramp.el
+++ b/lisp/net/tramp.el
@@ -599,8 +599,8 @@ detected as prompt when being sent on echoing hosts, therefore.")
599 (tramp-copy-keep-date nil) 599 (tramp-copy-keep-date nil)
600 (tramp-password-end-of-line nil)) 600 (tramp-password-end-of-line nil))
601 ("plink" (tramp-login-program "plink") 601 ("plink" (tramp-login-program "plink")
602 (tramp-login-args (("%h") ("-l" "%u") ("-P" "%p") 602 (tramp-login-args (("-l" "%u") ("-P" "%p")
603 ("-ssh"))) 603 ("-ssh") ("%h")))
604 (tramp-remote-sh "/bin/sh") 604 (tramp-remote-sh "/bin/sh")
605 (tramp-copy-program nil) 605 (tramp-copy-program nil)
606 (tramp-copy-args nil) 606 (tramp-copy-args nil)
@@ -609,8 +609,8 @@ detected as prompt when being sent on echoing hosts, therefore.")
609 (tramp-default-port 22)) 609 (tramp-default-port 22))
610 ("plink1" 610 ("plink1"
611 (tramp-login-program "plink") 611 (tramp-login-program "plink")
612 (tramp-login-args (("%h") ("-l" "%u") ("-P" "%p") 612 (tramp-login-args (("-l" "%u") ("-P" "%p")
613 ("-1" "-ssh"))) 613 ("-1" "-ssh") ("%h")))
614 (tramp-remote-sh "/bin/sh") 614 (tramp-remote-sh "/bin/sh")
615 (tramp-copy-program nil) 615 (tramp-copy-program nil)
616 (tramp-copy-args nil) 616 (tramp-copy-args nil)
@@ -633,8 +633,8 @@ detected as prompt when being sent on echoing hosts, therefore.")
633 (tramp-copy-keep-date nil) 633 (tramp-copy-keep-date nil)
634 (tramp-password-end-of-line nil)) 634 (tramp-password-end-of-line nil))
635 ("pscp" (tramp-login-program "plink") 635 ("pscp" (tramp-login-program "plink")
636 (tramp-login-args (("%h") ("-l" "%u") ("-P" "%p") 636 (tramp-login-args (("-l" "%u") ("-P" "%p")
637 ("-ssh"))) 637 ("-ssh") ("%h")))
638 (tramp-remote-sh "/bin/sh") 638 (tramp-remote-sh "/bin/sh")
639 (tramp-copy-program "pscp") 639 (tramp-copy-program "pscp")
640 (tramp-copy-args (("-P" "%p") ("-scp") ("-p" "%k"))) 640 (tramp-copy-args (("-P" "%p") ("-scp") ("-p" "%k")))
@@ -642,8 +642,8 @@ detected as prompt when being sent on echoing hosts, therefore.")
642 (tramp-password-end-of-line "xy") ;see docstring for "xy" 642 (tramp-password-end-of-line "xy") ;see docstring for "xy"
643 (tramp-default-port 22)) 643 (tramp-default-port 22))
644 ("psftp" (tramp-login-program "plink") 644 ("psftp" (tramp-login-program "plink")
645 (tramp-login-args (("%h") ("-l" "%u") ("-P" "%p") 645 (tramp-login-args (("-l" "%u") ("-P" "%p")
646 ("-ssh"))) 646 ("-ssh") ("%h")))
647 (tramp-remote-sh "/bin/sh") 647 (tramp-remote-sh "/bin/sh")
648 (tramp-copy-program "pscp") 648 (tramp-copy-program "pscp")
649 (tramp-copy-args (("-P" "%p") ("-sftp") ("-p" "%k"))) 649 (tramp-copy-args (("-P" "%p") ("-sftp") ("-p" "%k")))