Function: allout-recent-depth
allout-recent-depth is a byte-compiled function defined in
allout.el.gz.
Signature
(allout-recent-depth)
Documentation
Return depth of last heading encountered by an outline maneuvering function.
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 depth.
Source Code
;; Defined in /usr/src/emacs/lisp/allout.el.gz
;;;_ > allout-recent-depth ()
(defsubst allout-recent-depth ()
"Return depth of last heading encountered by an outline maneuvering function.
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 depth."
allout-recent-depth)