aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2011-03-05 11:36:33 -0800
committerGlenn Morris2011-03-05 11:36:33 -0800
commit903538d450d69afc9799563f0df0328e67921518 (patch)
tree7b2b1090b489b97082c54160009dafafcfcda169
parent77f63d3050876a786fd031676d2780ee7b10221b (diff)
downloademacs-903538d450d69afc9799563f0df0328e67921518.tar.gz
emacs-903538d450d69afc9799563f0df0328e67921518.zip
* 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 f3fcc52aac8..eeaccc4b890 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
121PROC and STATUS to both." 121PROC and STATUS to both."
122 (or (memq 'eshell-reset-after-proc eshell-kill-hook) 122 (or (memq 'eshell-reset-after-proc eshell-kill-hook)
123 (eshell-reset-after-proc proc status)) 123 (eshell-reset-after-proc proc status))
124 (run-hook-with-args eshell-kill-hook proc status)) 124 (run-hook-with-args 'eshell-kill-hook proc status))
125 125
126(defun eshell-proc-initialize () 126(defun eshell-proc-initialize ()
127 "Initialize the process handling code." 127 "Initialize the process handling code."