From: Mattias EngdegÄrd Date: Wed, 20 Mar 2019 09:37:36 +0000 (+0100) Subject: Repair eshell-query-kill-processes X-Git-Tag: emacs-27.0.90~3384 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=65b395d7ccd6333c953328d7bf3116d52324285a;p=emacs.git Repair eshell-query-kill-processes * lisp/eshell/esh-proc.el (eshell-query-kill-processes): Remove invalid `format-message' call; `eshell-round-robin-kill' wants just the format string. --- diff --git a/lisp/eshell/esh-proc.el b/lisp/eshell/esh-proc.el index 55251f5bfb2..3432582cf4b 100644 --- a/lisp/eshell/esh-proc.el +++ b/lisp/eshell/esh-proc.el @@ -498,7 +498,7 @@ See the variable `eshell-kill-processes-on-exit'." (buffer-name)))) (eshell-round-robin-kill (if (eq eshell-kill-processes-on-exit 'every) - (format-message "Kill Eshell child process `%s'? ")))) + "Kill Eshell child process `%s'? "))) (let ((buf (get-buffer "*Process List*"))) (if (and buf (buffer-live-p buf)) (kill-buffer buf)))