# HG changeset patch # User Deepak Goel # Date 1127048359 0 # Node ID e188ae94d98be57300626ae4b81876ff9a1fb40d # Parent 8e711c68e4ffa70a2d08e4f49e9a9e87f45b23bd Correct my previous breakage of parens. diff -r 8e711c68e4ff -r e188ae94d98b lisp/eshell/esh-proc.el --- a/lisp/eshell/esh-proc.el Sun Sep 18 12:48:32 2005 +0000 +++ b/lisp/eshell/esh-proc.el Sun Sep 18 12:59:19 2005 +0000 @@ -225,8 +225,8 @@ (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)))