mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2026-09-10 07:46:51 -04:00
* lisp/shell.el (shell): Fix typo: use process-live-p (bug#81145).
This commit is contained in:
parent
545bbc6ebe
commit
2487984685
|
|
@ -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