Function: smart-outline-subtree-hidden-p

smart-outline-subtree-hidden-p is a byte-compiled function defined in hui-mouse.el.

Signature

(smart-outline-subtree-hidden-p)

Documentation

Return t if at least initial subtree of heading is hidden, else nil.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hui-mouse.el
(defun smart-outline-subtree-hidden-p ()
  "Return t if at least initial subtree of heading is hidden, else nil."
  (and (outline-on-heading-p t)
       (outline-invisible-in-p
	(point) (or (save-excursion (re-search-forward "[\n\r]" nil t)) (point)))))