Function: shortdoc-next
shortdoc-next is an interactive and byte-compiled function defined in
shortdoc.el.gz.
Signature
(shortdoc-next &optional ARG)
Documentation
Move cursor to the next function.
With ARG, do it that many times.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/shortdoc.el.gz
(defun shortdoc-next (&optional arg)
"Move cursor to the next function.
With ARG, do it that many times."
(interactive "p" shortdoc-mode)
(shortdoc--goto-section arg 'shortdoc-function))