Variable: ispell-minor-mode

ispell-minor-mode is a buffer-local variable defined in ispell.el.gz.

Documentation

Non-nil if ISpell minor mode is enabled.

Use the command ispell-minor-mode(var)/ispell-minor-mode(fun) to change this variable.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/ispell.el.gz
;;;###autoload
(define-minor-mode ispell-minor-mode
  "Toggle last-word spell checking (Ispell minor mode).

Ispell minor mode is a buffer-local minor mode.  When enabled,
typing SPC or RET warns you if the previous word is incorrectly
spelled.

All the buffer-local variables and dictionaries are ignored.  To
read them into the running Ispell process, type \\[ispell-word]
SPC.

For spell-checking \"on the fly\", not just after typing SPC or
RET, use `flyspell-mode'."
  :lighter " Spell" :keymap ispell-minor-keymap)