Function: allout-previous-visible-heading
allout-previous-visible-heading is an interactive and byte-compiled
function defined in allout.el.gz.
Signature
(allout-previous-visible-heading ARG)
Documentation
Move to the previous heading line.
With argument, repeats or can move forward if negative.
A heading line is one that starts with a * (or that allout-regexp
matches).
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/allout.el.gz
;;;_ > allout-previous-visible-heading (arg)
(defun allout-previous-visible-heading (arg)
"Move to the previous heading line.
With argument, repeats or can move forward if negative.
A heading line is one that starts with a `*' (or that `allout-regexp'
matches)."
(interactive "p")
(prog1 (allout-next-visible-heading (- arg))
(if (allout-called-interactively-p) (allout-end-of-prefix))))