diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-10-01 04:30:14 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-10-01 04:30:14 +0000 |
commit | a8928dd22f52c72f3c6ff2878b5b2e1d52ca271a (patch) | |
tree | c280408ac3855923798c5bd2696bc8640fe29d6f /lisp/textmodes/ispell.el | |
parent | e141acb3f441298d3f444d92ae4974b5992f2148 (diff) | |
download | emacs-a8928dd22f52c72f3c6ff2878b5b2e1d52ca271a.tar.gz |
(ispell-init-process): Add missing arg in error msg.
Diffstat (limited to 'lisp/textmodes/ispell.el')
-rw-r--r-- | lisp/textmodes/ispell.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/textmodes/ispell.el b/lisp/textmodes/ispell.el index 6955d98968c..d9d2825acbc 100644 --- a/lisp/textmodes/ispell.el +++ b/lisp/textmodes/ispell.el @@ -1452,7 +1452,7 @@ scrolling the current window. Leave the new window selected." (set-process-filter ispell-process 'ispell-filter) (accept-process-output ispell-process) ; Get version ID line (cond ((null ispell-filter) - (error "%s did not output version line")) + (error "%s did not output version line" ispell-program-name)) ((and (null (cdr ispell-filter)) (stringp (car ispell-filter)) (string-match "^@(#) " (car ispell-filter))) |