Function: checkdoc-ispell-current-buffer

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

Signature

(checkdoc-ispell-current-buffer)

Documentation

Check the style and spelling of the current buffer.

Calls checkdoc-current-buffer with spell-checking turned on. Prefix argument is the same as for checkdoc-current-buffer.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/checkdoc.el.gz
;;;###autoload
(defun checkdoc-ispell-current-buffer ()
  "Check the style and spelling of the current buffer.
Calls `checkdoc-current-buffer' with spell-checking turned on.
Prefix argument is the same as for `checkdoc-current-buffer'."
  (interactive)
  (let ((checkdoc-spellcheck-documentation-flag t))
    (call-interactively #'checkdoc-current-buffer)))