1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-30 12:21:25 -08:00

(ispell-menu-map-needed): flyspell-mode could be void.

This commit is contained in:
Lute Kamstra 2005-06-09 12:14:26 +00:00
parent 9fed2905dd
commit 420adcc607
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2005-06-09 Lute Kamstra <lute@gnu.org>
* textmodes/ispell.el (ispell-menu-map-needed): flyspell-mode
could be void.
2005-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
* emacs-lisp/debug.el (debugger-will-be-back): New var.

View file

@ -942,7 +942,7 @@ The variable `ispell-library-directory' defines the library location."
'(menu-item "Automatic spell checking (Flyspell)"
flyspell-mode
:help "Check spelling while you edit the text"
:button (:toggle . flyspell-mode)))
:button (:toggle . (bound-and-true-p flyspell-mode))))
(define-key ispell-menu-map [ispell-complete-word]
'(menu-item "Complete Word" ispell-complete-word
:help "Complete word at cursor using dictionary"))