diff options
| author | Karl Heuer | 1997-03-11 22:27:36 +0000 |
|---|---|---|
| committer | Karl Heuer | 1997-03-11 22:27:36 +0000 |
| commit | ab9d539cc9af07142893dab364a0ddf41577d71d (patch) | |
| tree | 8dd592b88a68bf09ba7542672d62142a052b895b | |
| parent | 6e36fe0badf488de5c8bb2475ca475eaa88ea5a1 (diff) | |
| download | emacs-ab9d539cc9af07142893dab364a0ddf41577d71d.tar.gz emacs-ab9d539cc9af07142893dab364a0ddf41577d71d.zip | |
(ispell-command-loop): Disable message logging.
(ispell-region): Ditto.
| -rw-r--r-- | lisp/textmodes/ispell.el | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/lisp/textmodes/ispell.el b/lisp/textmodes/ispell.el index dd553fa90e7..a6e5afd6406 100644 --- a/lisp/textmodes/ispell.el +++ b/lisp/textmodes/ispell.el | |||
| @@ -1060,8 +1060,9 @@ used." | |||
| 1060 | result | 1060 | result |
| 1061 | (progn | 1061 | (progn |
| 1062 | (undo-boundary) | 1062 | (undo-boundary) |
| 1063 | (message (concat "C-h or ? for more options; SPC to leave " | 1063 | (let (message-log-max) |
| 1064 | "unchanged, Character to replace word")) | 1064 | (message (concat "C-h or ? for more options; SPC to leave " |
| 1065 | "unchanged, Character to replace word"))) | ||
| 1065 | (let ((inhibit-quit t)) | 1066 | (let ((inhibit-quit t)) |
| 1066 | (setq char (if (fboundp 'read-char-exclusive) | 1067 | (setq char (if (fboundp 'read-char-exclusive) |
| 1067 | (read-char-exclusive) | 1068 | (read-char-exclusive) |
| @@ -1864,8 +1865,9 @@ With prefix argument, set the default directory." | |||
| 1864 | offset-change (+ offset-change change) | 1865 | offset-change (+ offset-change change) |
| 1865 | end (+ end change))))) | 1866 | end (+ end change))))) |
| 1866 | (if (not ispell-quit) | 1867 | (if (not ispell-quit) |
| 1867 | (message "Continuing spelling check using %s dictionary..." | 1868 | (let (message-log-max) |
| 1868 | (or ispell-dictionary "default"))) | 1869 | (message "Continuing spelling check using %s dictionary..." |
| 1870 | (or ispell-dictionary "default")))) | ||
| 1869 | (sit-for 0))) | 1871 | (sit-for 0))) |
| 1870 | ;; finished with line! | 1872 | ;; finished with line! |
| 1871 | (setq ispell-filter (cdr ispell-filter))))) | 1873 | (setq ispell-filter (cdr ispell-filter))))) |