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.

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."
  (interactive)
  (ispell-region (point-min) (point-max)))