From: Michael Albinus Date: Thu, 30 May 2024 16:55:21 +0000 (+0200) Subject: Fix job control in remote shell X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d7fd3b022201bdfec0f82ffa21e75abac3eb7fb6;p=emacs.git Fix job control in remote shell * lisp/net/tramp-sh.el (tramp-methos) : Adapt `tramp-direct-async' argument. (Bug#71259) (cherry picked from commit baecf9bb283e52a829e31ae6f36c4687171a51c5) --- diff --git a/lisp/net/tramp-sh.el b/lisp/net/tramp-sh.el index 16153b1d6ab..30ee1c54e32 100644 --- a/lisp/net/tramp-sh.el +++ b/lisp/net/tramp-sh.el @@ -189,7 +189,7 @@ The string is used in `tramp-methods'.") (tramp-login-args (("-l" "%u") ("-p" "%p") ("%c") ("-e" "none") ("%h"))) (tramp-async-args (("-q"))) - (tramp-direct-async t) + (tramp-direct-async ("-t" "-t")) (tramp-remote-shell ,tramp-default-remote-shell) (tramp-remote-shell-login ("-l")) (tramp-remote-shell-args ("-c")) @@ -253,7 +253,7 @@ The string is used in `tramp-methods'.") (tramp-login-args (("-l" "%u") ("-p" "%p") ("%c") ("-e" "none") ("%h"))) (tramp-async-args (("-q"))) - (tramp-direct-async t) + (tramp-direct-async ("-t" "-t")) (tramp-remote-shell ,tramp-default-remote-shell) (tramp-remote-shell-login ("-l")) (tramp-remote-shell-args ("-c"))))