Function: hsys-org-face-at-p
hsys-org-face-at-p is a byte-compiled function defined in hsys-org.el.
Signature
(hsys-org-face-at-p ORG-FACE-TYPE)
Documentation
Return ORG-FACE-TYPE iff point is on a character with that face, else nil.
ORG-FACE-TYPE must be a symbol, not a symbol name.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hsys-org.el
(defun hsys-org-face-at-p (org-face-type)
"Return ORG-FACE-TYPE iff point is on a character with that face, else nil.
ORG-FACE-TYPE must be a symbol, not a symbol name."
(hproperty:char-property-contains-p (point) 'face org-face-type))