aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris <[email protected]>2011-03-05 11:36:33 -0800
committerGlenn Morris <[email protected]>2011-03-05 11:36:33 -0800
commit903538d450d69afc9799563f0df0328e67921518 (patch)
tree7b2b1090b489b97082c54160009dafafcfcda169
parent77f63d3050876a786fd031676d2780ee7b10221b (diff)
* lisp/eshell/esh-proc.el (eshell-kill-process-function): Fix typo in previous.
-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 f3fcc52aac..eeaccc4b89 100644
--- a/lisp/eshell/esh-proc.el
+++ b/lisp/eshell/esh-proc.el
@@ -121,7 +121,7 @@ Runs `eshell-reset-after-proc' and `eshell-kill-hook', passing arguments
PROC and STATUS to both."
(or (memq 'eshell-reset-after-proc eshell-kill-hook)
(eshell-reset-after-proc proc status))
- (run-hook-with-args eshell-kill-hook proc status))
+ (run-hook-with-args 'eshell-kill-hook proc status))
(defun eshell-proc-initialize ()
"Initialize the process handling code."