diff options
author | Glenn Morris <rgm@gnu.org> | 2013-09-18 19:55:00 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2013-09-18 19:55:00 -0700 |
commit | 390b7f9de6215917c6cf08e30ca898562d2517e3 (patch) | |
tree | d071d25324ea3ffce079d771c131d7f3b1ec47a2 /lisp/eshell | |
parent | 57a3a53d53bbe41dfb4341dc26c9335a61cc5f48 (diff) | |
download | emacs-390b7f9de6215917c6cf08e30ca898562d2517e3.tar.gz |
* eshell/esh-proc.el (eshell-reset-after-proc): Mark unused arg.
Diffstat (limited to 'lisp/eshell')
-rw-r--r-- | lisp/eshell/esh-proc.el | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lisp/eshell/esh-proc.el b/lisp/eshell/esh-proc.el index e77287c2f78..b72e6328d64 100644 --- a/lisp/eshell/esh-proc.el +++ b/lisp/eshell/esh-proc.el @@ -133,7 +133,11 @@ PROC and STATUS to both." ; (define-key eshell-command-map [(control ?z)] 'eshell-stop-process) (define-key eshell-command-map [(control ?\\)] 'eshell-quit-process)) -(defun eshell-reset-after-proc (proc status) +;; This used to be on `eshell-kill-hook', which calls its functions +;; with two arguments. Nowadays we call it directly in +;; `eshell-kill-process-function', but in case anyone still has it +;; on `eshell-kill-hook', _proc has to stay. +(defun eshell-reset-after-proc (_proc status) "Reset the command input location after a process terminates. The signals which will cause this to happen are matched by `eshell-reset-signals'." |