mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-25 07:28:20 +00:00
Fix tramp-accept-process-output
* lisp/net/tramp.el (tramp-accept-process-output): Use `with-tramp-suspended-timers' also for the other processes.
This commit is contained in:
parent
88bb7cdf91
commit
6b3e3ff699
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user