Function: shortdoc-previous

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

Signature

(shortdoc-previous &optional ARG)

Documentation

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