Function: hyrolo-outline-get-level
hyrolo-outline-get-level is a byte-compiled function defined in
hyrolo.el.
Signature
(hyrolo-outline-get-level BACKWARD-FLAG)
Documentation
Return the outline level at point.
Return 0 if not on an outline-regexp line.
BACKWARD-FLAG is non-nil if moving backward, else nil when moving
forward through the buffer.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hyrolo.el
(defun hyrolo-outline-get-level (backward-flag)
"Return the outline level at point.
Return 0 if not on an `outline-regexp' line.
BACKWARD-FLAG is non-nil if moving backward, else nil when moving
forward through the buffer."
(save-excursion
(beginning-of-line)
(hyrolo-funcall-match
(lambda () (hyrolo-outline-level))
backward-flag)))