mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
Fix bug#66093 in Tramp
* lisp/net/tramp-sshfs.el (tramp-methods): Use "%a". (tramp-sshfs-handle-process-file): Replace ?a by "-t". * lisp/net/tramp.el (tramp-methods): Adapt docstring. (Bug#66093) (tramp-handle-make-process): Replace ?a by "-t" if indicated.
This commit is contained in:
parent
7d5fee0fea
commit
bee18e5273
2 changed files with 9 additions and 6 deletions
|
|
@ -60,7 +60,7 @@
|
|||
;; These are for remote processes.
|
||||
(tramp-login-program "ssh")
|
||||
(tramp-login-args (("-q") ("-l" "%u") ("-p" "%p")
|
||||
("-e" "none") ("-t" "-t")
|
||||
("-e" "none") ("%a" "%a")
|
||||
("%h") ("%l")))
|
||||
(tramp-direct-async t)
|
||||
(tramp-remote-shell ,tramp-default-remote-shell)
|
||||
|
|
@ -323,7 +323,7 @@ arguments to pass to the OPERATION."
|
|||
?h (or (tramp-file-name-host v) "")
|
||||
?u (or (tramp-file-name-user v) "")
|
||||
?p (or (tramp-file-name-port v) "")
|
||||
?l command))
|
||||
?a "-t" ?l command))
|
||||
|
||||
;; Synchronize stderr.
|
||||
(when tmpstderr
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue