Function: outline-end-of-heading

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

Signature

(outline-end-of-heading)

Documentation

Move to one char before the next outline-heading-end-regexp.

Source Code

;; Defined in /usr/src/emacs/lisp/outline.el.gz
(defun outline-end-of-heading ()
  "Move to one char before the next `outline-heading-end-regexp'."
  (if (re-search-forward outline-heading-end-regexp nil 'move)
      (forward-char -1)))