From: Deepak Goel Date: Sun, 18 Sep 2005 12:59:19 +0000 (+0000) Subject: Correct my previous breakage of parens. X-Git-Tag: emacs-pretest-22.0.90~7031 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b2a9524a3c05b131fc68dc6c164af9bbcdc670af;p=emacs.git Correct my previous breakage of parens. --- diff --git a/lisp/eshell/esh-proc.el b/lisp/eshell/esh-proc.el index e952ff976f0..530eb9c900a 100644 --- a/lisp/eshell/esh-proc.el +++ b/lisp/eshell/esh-proc.el @@ -225,8 +225,8 @@ The prompt will be set to PROMPT." (if (and (eshell-processp (car entry)) (nth 2 entry) eshell-done-messages-in-minibuffer) - (message "[%s]+ Done %s" (process-name (car entry) - (process-command (car entry))))) + (message "[%s]+ Done %s" (process-name (car entry)) + (process-command (car entry)))) (setq eshell-process-list (delq entry eshell-process-list)))