Function: checkdoc-ispell
checkdoc-ispell is an autoloaded, interactive and byte-compiled
function defined in checkdoc.el.gz.
Signature
(checkdoc-ispell)
Documentation
Check the style and spelling of everything interactively.
Calls checkdoc with spell-checking turned on.
Prefix argument is the same as for checkdoc.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/checkdoc.el.gz
;;; Ispell interface for forcing a spell check
;;
;;;###autoload
(defun checkdoc-ispell ()
"Check the style and spelling of everything interactively.
Calls `checkdoc' with spell-checking turned on.
Prefix argument is the same as for `checkdoc'."
(interactive)
(let ((checkdoc-spellcheck-documentation-flag t))
(call-interactively #'checkdoc)))