Function: allout-recent-prefix
allout-recent-prefix is a byte-compiled function defined in
allout.el.gz.
Signature
(allout-recent-prefix)
Documentation
Like allout-recent-depth(var)/allout-recent-depth(fun), but return text of last encountered prefix.
All outline functions which directly do string matches to assess
headings set the variables allout-recent-prefix-beginning and
allout-recent-prefix-end if successful. This function uses those settings
to return the current prefix.
Source Code
;; Defined in /usr/src/emacs/lisp/allout.el.gz
;;;_ > allout-recent-prefix ()
(defsubst allout-recent-prefix ()
"Like `allout-recent-depth', but return text of last encountered prefix.
All outline functions which directly do string matches to assess
headings set the variables `allout-recent-prefix-beginning' and
`allout-recent-prefix-end' if successful. This function uses those settings
to return the current prefix."
(buffer-substring-no-properties allout-recent-prefix-beginning
allout-recent-prefix-end))