diff options
| author | Deepak Goel | 2005-09-18 12:59:19 +0000 |
|---|---|---|
| committer | Deepak Goel | 2005-09-18 12:59:19 +0000 |
| commit | b2a9524a3c05b131fc68dc6c164af9bbcdc670af (patch) | |
| tree | e12eb62fc44945fb4f0cfc5fe8034cae1e7f8bbe | |
| parent | 47570699e45fc013ac0a14138e9f6be9f60a5bca (diff) | |
| download | emacs-b2a9524a3c05b131fc68dc6c164af9bbcdc670af.tar.gz emacs-b2a9524a3c05b131fc68dc6c164af9bbcdc670af.zip | |
Correct my previous breakage of parens.
| -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." | |||
| 225 | (if (and (eshell-processp (car entry)) | 225 | (if (and (eshell-processp (car entry)) |
| 226 | (nth 2 entry) | 226 | (nth 2 entry) |
| 227 | eshell-done-messages-in-minibuffer) | 227 | eshell-done-messages-in-minibuffer) |
| 228 | (message "[%s]+ Done %s" (process-name (car entry) | 228 | (message "[%s]+ Done %s" (process-name (car entry)) |
| 229 | (process-command (car entry))))) | 229 | (process-command (car entry)))) |
| 230 | (setq eshell-process-list | 230 | (setq eshell-process-list |
| 231 | (delq entry eshell-process-list))) | 231 | (delq entry eshell-process-list))) |
| 232 | 232 | ||