diff options
| author | Juanma Barranquero | 2009-02-24 16:25:10 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2009-02-24 16:25:10 +0000 |
| commit | 221d9807b3e97c839a8aa98b1b7ce2d8df773273 (patch) | |
| tree | 9d9f1535deb3773e4b4f0a54d20bb167483f605f | |
| parent | 5f0e32eae1c50252096197728a2f0d8641bfda60 (diff) | |
| download | emacs-221d9807b3e97c839a8aa98b1b7ce2d8df773273.tar.gz emacs-221d9807b3e97c839a8aa98b1b7ce2d8df773273.zip | |
* textmodes/ispell.el (ispell-region): Adapt "done" message
to coding conventions. (Bug#2447)
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/textmodes/ispell.el | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 90e6a3ab99f..99cf5ee1f52 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2009-02-24 Juanma Barranquero <lekktu@gmail.com> | 1 | 2009-02-24 Juanma Barranquero <lekktu@gmail.com> |
| 2 | 2 | ||
| 3 | * textmodes/ispell.el (ispell-region): Adapt "done" message to | ||
| 4 | coding conventions. (Bug#2447) | ||
| 5 | |||
| 3 | * scroll-bar.el (scroll-bar-mode): Turn off scroll bars when | 6 | * scroll-bar.el (scroll-bar-mode): Turn off scroll bars when |
| 4 | argument is 0. Doc fix. (Bug#1527) | 7 | argument is 0. Doc fix. (Bug#1527) |
| 5 | 8 | ||
diff --git a/lisp/textmodes/ispell.el b/lisp/textmodes/ispell.el index d567ff485d3..ab43f78192f 100644 --- a/lisp/textmodes/ispell.el +++ b/lisp/textmodes/ispell.el | |||
| @@ -2849,7 +2849,7 @@ Return nil if spell session is quit, | |||
| 2849 | (if (not recheckp) (set-marker ispell-region-end nil)) | 2849 | (if (not recheckp) (set-marker ispell-region-end nil)) |
| 2850 | ;; Only save if successful exit. | 2850 | ;; Only save if successful exit. |
| 2851 | (ispell-pdict-save ispell-silently-savep) | 2851 | (ispell-pdict-save ispell-silently-savep) |
| 2852 | (message "Spell-checking %s using %s with %s dictionary done" | 2852 | (message "Spell-checking %s using %s with %s dictionary...done" |
| 2853 | (if (and (= reg-start (point-min)) (= reg-end (point-max))) | 2853 | (if (and (= reg-start (point-min)) (= reg-end (point-max))) |
| 2854 | (buffer-name) "region") | 2854 | (buffer-name) "region") |
| 2855 | (file-name-nondirectory ispell-program-name) | 2855 | (file-name-nondirectory ispell-program-name) |