Variable: outline-heading-end-regexp
outline-heading-end-regexp is a variable defined in outline.el.gz.
Value
"\n"
Documentation
Regular expression to match the end of a heading line.
You can assume that point is at the beginning of a heading when this
regexp is searched for. The heading ends at the end of the match.
The recommended way to set this is with a Local Variables: list
in the file it applies to.
Source Code
;; Defined in /usr/src/emacs/lisp/outline.el.gz
;;;###autoload(put 'outline-regexp 'safe-local-variable 'stringp)
(defvar outline-heading-end-regexp "\n"
"Regular expression to match the end of a heading line.
You can assume that point is at the beginning of a heading when this
regexp is searched for. The heading ends at the end of the match.
The recommended way to set this is with a `Local Variables:' list
in the file it applies to.")