Function: shortdoc-next-section

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

Signature

(shortdoc-next-section &optional ARG)

Documentation

Move point to the next section.

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