summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorAugusto Stoffel <arstoffel@gmail.com>2026-05-29 09:46:40 +0200
committerSean Whitton <spwhitton@spwhitton.name>2026-05-29 10:57:39 +0100
commit24879846852a577a348eb45c935ac2b31b632d94 (patch)
tree8ea533257eada00a28a61f21aa42467d9c3b0fad /lisp
parent545bbc6ebe819144c179bbef347016488c339fc8 (diff)
* lisp/shell.el (shell): Fix typo: use process-live-p (bug#81145).
Diffstat (limited to 'lisp')
-rw-r--r--lisp/shell.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/shell.el b/lisp/shell.el
index 2730c417b49..acaa8e1f860 100644
--- a/lisp/shell.el
+++ b/lisp/shell.el
@@ -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)