Function: checkdoc-eval-current-buffer
checkdoc-eval-current-buffer is an autoloaded, interactive and
byte-compiled function defined in checkdoc.el.gz.
Signature
(checkdoc-eval-current-buffer)
Documentation
Evaluate and check documentation for the current buffer.
Evaluation is done first because good documentation for something that doesn't work is just not useful. Comments, doc strings, and rogue spacing are all verified.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/checkdoc.el.gz
;;;###autoload
(defun checkdoc-eval-current-buffer ()
"Evaluate and check documentation for the current buffer.
Evaluation is done first because good documentation for something that
doesn't work is just not useful. Comments, doc strings, and rogue
spacing are all verified."
(interactive)
(eval-buffer nil)
(checkdoc-current-buffer t))