Function: checkdoc-next-docstring
checkdoc-next-docstring is a byte-compiled function defined in
checkdoc.el.gz.
Signature
(checkdoc-next-docstring)
Documentation
Move to the next doc string after point, and return t.
Return nil if there are no more doc strings.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/checkdoc.el.gz
(defun checkdoc-next-docstring ()
"Move to the next doc string after point, and return t.
Return nil if there are no more doc strings."
(let (found)
(while (and (not (setq found (checkdoc--next-docstring)))
(beginning-of-defun -1)))
found))