diff options
| author | Juri Linkov | 2011-08-25 22:54:07 +0300 |
|---|---|---|
| committer | Juri Linkov | 2011-08-25 22:54:07 +0300 |
| commit | f65d1611ff6ec028625ab44bc4974e1a8945e2d5 (patch) | |
| tree | 1822d45633f6160e57d6bda0a23f1c0036c13adb | |
| parent | f1cf7a31ca9849486ba00f10517e7d536d90e797 (diff) | |
| download | emacs-f65d1611ff6ec028625ab44bc4974e1a8945e2d5.tar.gz emacs-f65d1611ff6ec028625ab44bc4974e1a8945e2d5.zip | |
* lisp/textmodes/ispell.el (ispell-command-loop): Add newline
at the end of the "Use option `i'..." line.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/textmodes/ispell.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 6ce18817f4f..a98bdfd7709 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,10 @@ | |||
| 1 | 2011-08-25 Juri Linkov <juri@jurta.org> | 1 | 2011-08-25 Juri Linkov <juri@jurta.org> |
| 2 | 2 | ||
| 3 | * textmodes/ispell.el (ispell-command-loop): Add newline | ||
| 4 | at the end of the "Use option `i'..." line. | ||
| 5 | |||
| 6 | 2011-08-25 Juri Linkov <juri@jurta.org> | ||
| 7 | |||
| 3 | * battery.el (display-battery-mode): If `battery-status-function' | 8 | * battery.el (display-battery-mode): If `battery-status-function' |
| 4 | or `battery-mode-line-format' is nil, display the message and set | 9 | or `battery-mode-line-format' is nil, display the message and set |
| 5 | `display-battery-mode' to nil (bug#9363). | 10 | `display-battery-mode' to nil (bug#9363). |
diff --git a/lisp/textmodes/ispell.el b/lisp/textmodes/ispell.el index c196218feec..5521cfd3de8 100644 --- a/lisp/textmodes/ispell.el +++ b/lisp/textmodes/ispell.el | |||
| @@ -1914,7 +1914,7 @@ Global `ispell-quit' set to start location to continue spell session." | |||
| 1914 | (setq line (1+ line)))) | 1914 | (setq line (1+ line)))) |
| 1915 | (insert (car guess) " ") | 1915 | (insert (car guess) " ") |
| 1916 | (setq guess (cdr guess))) | 1916 | (setq guess (cdr guess))) |
| 1917 | (insert "\nUse option `i' to accept this spelling and put it in your private dictionary.") | 1917 | (insert "\nUse option `i' to accept this spelling and put it in your private dictionary.\n") |
| 1918 | (setq line (+ line (if choices 3 2))))) | 1918 | (setq line (+ line (if choices 3 2))))) |
| 1919 | (while (and choices | 1919 | (while (and choices |
| 1920 | (< (if (> (+ 7 (current-column) (length (car choices)) | 1920 | (< (if (> (+ 7 (current-column) (length (car choices)) |