diff options
author | Deepak Goel <deego@gnufans.org> | 2005-09-18 12:59:19 +0000 |
---|---|---|
committer | Deepak Goel <deego@gnufans.org> | 2005-09-18 12:59:19 +0000 |
commit | b2a9524a3c05b131fc68dc6c164af9bbcdc670af (patch) | |
tree | e12eb62fc44945fb4f0cfc5fe8034cae1e7f8bbe /lisp/eshell | |
parent | 47570699e45fc013ac0a14138e9f6be9f60a5bca (diff) | |
download | emacs-b2a9524a3c05b131fc68dc6c164af9bbcdc670af.tar.gz |
Correct my previous breakage of parens.
Diffstat (limited to 'lisp/eshell')
-rw-r--r-- | lisp/eshell/esh-proc.el | 4 |
1 files changed, 2 insertions, 2 deletions
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))) |