mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-06-14 12:31:25 +00:00
* lisp/shell.el (shell): Fix typo: use process-live-p (bug#81145).
This commit is contained in:
parent
545bbc6ebe
commit
2487984685
1 changed files with 1 additions and 1 deletions
|
|
@ -996,7 +996,7 @@ Make the shell buffer the current buffer, and return it.
|
|||
(lambda (proc event)
|
||||
(when sentinel
|
||||
(funcall sentinel proc event))
|
||||
(unless (buffer-live-p proc)
|
||||
(unless (process-live-p proc)
|
||||
(kill-buffer buffer))))))
|
||||
buffer)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue