diff options
author | Deepak Goel <deego@gnufans.org> | 2005-09-18 12:38:39 +0000 |
---|---|---|
committer | Deepak Goel <deego@gnufans.org> | 2005-09-18 12:38:39 +0000 |
commit | d8ea53f999a0b53278b9dd59f7902d325edbd45b (patch) | |
tree | 80572e8d8ae3b52b4457dc472b4606c262dd5724 /lisp/eshell/esh-proc.el | |
parent | 8381614263ceb53ebe900128ab0aefae0cf8e476 (diff) | |
download | emacs-d8ea53f999a0b53278b9dd59f7902d325edbd45b.tar.gz emacs-d8ea53f999a0b53278b9dd59f7902d325edbd45b.tar.bz2 emacs-d8ea53f999a0b53278b9dd59f7902d325edbd45b.zip |
message format spec fixes (commit # 7)
Diffstat (limited to 'lisp/eshell/esh-proc.el')
-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 82a0968ae3d..e952ff976f0 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 (format "[%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))) |