Function: shortdoc-next

shortdoc-next is an interactive and byte-compiled function defined in shortdoc.el.gz.

Signature

(shortdoc-next &optional ARG)

Documentation

Move point to the next function.

With prefix numeric argument 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 point to the next function.
With prefix numeric argument ARG, do it that many times."
  (interactive "p" shortdoc-mode)
  (shortdoc--goto-section arg 'shortdoc-function))