From 24879846852a577a348eb45c935ac2b31b632d94 Mon Sep 17 00:00:00 2001 From: Augusto Stoffel Date: Fri, 29 May 2026 09:46:40 +0200 Subject: [PATCH] * lisp/shell.el (shell): Fix typo: use process-live-p (bug#81145). --- lisp/shell.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)