aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuri Linkov2011-08-25 22:54:07 +0300
committerJuri Linkov2011-08-25 22:54:07 +0300
commitf65d1611ff6ec028625ab44bc4974e1a8945e2d5 (patch)
tree1822d45633f6160e57d6bda0a23f1c0036c13adb
parentf1cf7a31ca9849486ba00f10517e7d536d90e797 (diff)
downloademacs-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/ChangeLog5
-rw-r--r--lisp/textmodes/ispell.el2
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 @@
12011-08-25 Juri Linkov <juri@jurta.org> 12011-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
62011-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))