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