Function: hsys-org-heading-at-p
hsys-org-heading-at-p is a byte-compiled function defined in
hsys-org.el.
Signature
(hsys-org-heading-at-p &optional _)
Documentation
Non-nil when on a headline.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hsys-org.el
;; Assume caller has already checked that the current buffer is in org-mode.
(defun hsys-org-heading-at-p (&optional _)
"Non-nil when on a headline."
(unless (or (smart-eolp) (smart-eobp))
(outline-on-heading-p t)))