diff options
| author | Richard M. Stallman | 1998-04-17 03:21:24 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1998-04-17 03:21:24 +0000 |
| commit | 0de86efccd36ae80affc9711c87eb2dd7e25b5ea (patch) | |
| tree | 14802f93476931cbc1226f3d56a3d2c2b4d5b198 | |
| parent | 43fd1680f924dbfdc3aa6a22dc05b6102354fc25 (diff) | |
| download | emacs-0de86efccd36ae80affc9711c87eb2dd7e25b5ea.tar.gz emacs-0de86efccd36ae80affc9711c87eb2dd7e25b5ea.zip | |
(ispell-word): In ispell-check-only mode,
display a message for misspelled word.
| -rw-r--r-- | lisp/textmodes/ispell.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/textmodes/ispell.el b/lisp/textmodes/ispell.el index 60cf46da30d..e8eaf568b11 100644 --- a/lisp/textmodes/ispell.el +++ b/lisp/textmodes/ispell.el | |||
| @@ -913,6 +913,7 @@ or \\[ispell-region] to update the Ispell process." | |||
| 913 | (funcall ispell-format-word poss)))) | 913 | (funcall ispell-format-word poss)))) |
| 914 | ((null poss) (message "Error in ispell process")) | 914 | ((null poss) (message "Error in ispell process")) |
| 915 | (ispell-check-only ; called from ispell minor mode. | 915 | (ispell-check-only ; called from ispell minor mode. |
| 916 | (message "Misspelled word `%s'" word) | ||
| 916 | (beep)) | 917 | (beep)) |
| 917 | (t ; prompt for correct word. | 918 | (t ; prompt for correct word. |
| 918 | (save-window-excursion | 919 | (save-window-excursion |