From: Michael Albinus Date: Tue, 29 Aug 2023 12:16:15 +0000 (+0200) Subject: Fix tramp-accept-process-output X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6b3e3ff6991359c1516e3fc8bb350389a6a9aafe;p=emacs.git Fix tramp-accept-process-output * lisp/net/tramp.el (tramp-accept-process-output): Use `with-tramp-suspended-timers' also for the other processes. --- diff --git a/lisp/net/tramp.el b/lisp/net/tramp.el index 9d555c5621b..b34d3ff6695 100644 --- a/lisp/net/tramp.el +++ b/lisp/net/tramp.el @@ -5615,7 +5615,8 @@ If the user quits via `C-g', it is propagated up to `tramp-file-name-handler'." (v (process-get proc 'tramp-vector))) (dolist (p (delq proc (process-list))) (when (tramp-file-name-equal-p v (process-get p 'tramp-vector)) - (with-local-quit (accept-process-output p 0 nil t))))) + (with-tramp-suspended-timers + (with-local-quit (accept-process-output p 0 nil t)))))) (with-current-buffer (process-buffer proc) (let ((inhibit-read-only t)