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.
This commit is contained in:
Mattias Engdegård 2019-03-20 10:37:36 +01:00
parent f13d97b4de
commit 65b395d7cc

View file

@ -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)))