Function: ispell-buffer

ispell-buffer is an autoloaded, interactive and byte-compiled function defined in ispell.el.gz.

Signature

(ispell-buffer)

Documentation

Check the current buffer for spelling errors interactively.

Leave the mark at the last misspelled word that the user was queried about.

View in manual

Probably introduced at or before Emacs version 19.20.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/ispell.el.gz
;;;###autoload
(defun ispell-buffer ()
  "Check the current buffer for spelling errors interactively.
Leave the mark at the last misspelled word that the user was queried about."
  (interactive)
  (ispell-region (point-min) (point-max)))