Function: outline--end-of-previous

outline--end-of-previous is a byte-compiled function defined in outline.el.gz.

Signature

(outline--end-of-previous)

Documentation

Go back from BOH (or EOB) to end of previous element.

Source Code

;; Defined in /usr/src/emacs/lisp/outline.el.gz
(defun outline--end-of-previous ()
  "Go back from BOH (or EOB) to end of previous element."
  (if (eobp)
      (if (bolp) (forward-char -1))
    ;; Go to end of line before heading
    (forward-char -1)
    (if (and outline-blank-line (bolp))
        ;; leave blank line before heading
        (forward-char -1))))