aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias EngdegÄrd2019-03-20 10:37:36 +0100
committerMattias EngdegÄrd2019-03-20 11:04:05 +0100
commit65b395d7ccd6333c953328d7bf3116d52324285a (patch)
tree5a86e2006cee682ab5f310832403e57b36da8af8
parentf13d97b4de02586cce49909aa2f3f51fcb5daa5f (diff)
downloademacs-65b395d7ccd6333c953328d7bf3116d52324285a.tar.gz
emacs-65b395d7ccd6333c953328d7bf3116d52324285a.zip
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.
-rw-r--r--lisp/eshell/esh-proc.el2
1 files changed, 1 insertions, 1 deletions
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'."
498 (buffer-name)))) 498 (buffer-name))))
499 (eshell-round-robin-kill 499 (eshell-round-robin-kill
500 (if (eq eshell-kill-processes-on-exit 'every) 500 (if (eq eshell-kill-processes-on-exit 'every)
501 (format-message "Kill Eshell child process `%s'? ")))) 501 "Kill Eshell child process `%s'? ")))
502 (let ((buf (get-buffer "*Process List*"))) 502 (let ((buf (get-buffer "*Process List*")))
503 (if (and buf (buffer-live-p buf)) 503 (if (and buf (buffer-live-p buf))
504 (kill-buffer buf))) 504 (kill-buffer buf)))