Function: shortdoc--goto-section
shortdoc--goto-section is a byte-compiled function defined in
shortdoc.el.gz.
Signature
(shortdoc--goto-section ARG SYM &optional REVERSE)
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/shortdoc.el.gz
(defun shortdoc--goto-section (arg sym &optional reverse)
(unless (natnump arg)
(setq arg 1))
(while (> arg 0)
(funcall
(if reverse 'text-property-search-backward
'text-property-search-forward)
sym nil t)
(setq arg (1- arg))))