From: Glenn Morris Date: Sat, 5 Mar 2011 19:36:33 +0000 (-0800) Subject: * lisp/eshell/esh-proc.el (eshell-kill-process-function): Fix typo in previous. X-Git-Tag: emacs-pretest-24.0.90~104^2~275^2~674^2~29 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=903538d450d69afc9799563f0df0328e67921518;p=emacs.git * lisp/eshell/esh-proc.el (eshell-kill-process-function): Fix typo in previous. --- 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 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."