diff options
| author | Richard M. Stallman | 1994-10-01 04:30:14 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-10-01 04:30:14 +0000 |
| commit | a8928dd22f52c72f3c6ff2878b5b2e1d52ca271a (patch) | |
| tree | c280408ac3855923798c5bd2696bc8640fe29d6f | |
| parent | e141acb3f441298d3f444d92ae4974b5992f2148 (diff) | |
| download | emacs-a8928dd22f52c72f3c6ff2878b5b2e1d52ca271a.tar.gz emacs-a8928dd22f52c72f3c6ff2878b5b2e1d52ca271a.zip | |
(ispell-init-process): Add missing arg in error msg.
| -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." | |||
| 1452 | (set-process-filter ispell-process 'ispell-filter) | 1452 | (set-process-filter ispell-process 'ispell-filter) |
| 1453 | (accept-process-output ispell-process) ; Get version ID line | 1453 | (accept-process-output ispell-process) ; Get version ID line |
| 1454 | (cond ((null ispell-filter) | 1454 | (cond ((null ispell-filter) |
| 1455 | (error "%s did not output version line")) | 1455 | (error "%s did not output version line" ispell-program-name)) |
| 1456 | ((and (null (cdr ispell-filter)) | 1456 | ((and (null (cdr ispell-filter)) |
| 1457 | (stringp (car ispell-filter)) | 1457 | (stringp (car ispell-filter)) |
| 1458 | (string-match "^@(#) " (car ispell-filter))) | 1458 | (string-match "^@(#) " (car ispell-filter))) |