diff options
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/net/tramp.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/net/tramp.el b/lisp/net/tramp.el index 2aa9a6b9859..ef3e62ccce3 100644 --- a/lisp/net/tramp.el +++ b/lisp/net/tramp.el | |||
| @@ -4393,7 +4393,7 @@ Only works for Bourne-like shells." | |||
| 4393 | (t process))) | 4393 | (t process))) |
| 4394 | pid) | 4394 | pid) |
| 4395 | ;; If it's a Tramp process, send the INT signal remotely. | 4395 | ;; If it's a Tramp process, send the INT signal remotely. |
| 4396 | (when (and (processp proc) | 4396 | (when (and (processp proc) (process-live-p proc) |
| 4397 | (setq pid (process-get proc 'remote-pid))) | 4397 | (setq pid (process-get proc 'remote-pid))) |
| 4398 | (tramp-message proc 5 "Interrupt process %s with pid %s" proc pid) | 4398 | (tramp-message proc 5 "Interrupt process %s with pid %s" proc pid) |
| 4399 | ;; This is for tramp-sh.el. Other backends do not support this (yet). | 4399 | ;; This is for tramp-sh.el. Other backends do not support this (yet). |