Function: hywiki-word-face-at-p
hywiki-word-face-at-p is a byte-compiled function defined in
hywiki.el.
Signature
(hywiki-word-face-at-p &optional POS)
Documentation
Non-nil if point or optional POS has the hywiki-word-face property.
Return any HyWikiWord reference found.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hywiki.el
(defun hywiki-word-face-at-p (&optional pos)
"Non-nil if point or optional POS has the `hywiki-word-face' property.
Return any HyWikiWord reference found."
;; Sometimes this can return a left over button/overlay that points
;; to no buffer. Ignore this case.
(hproperty:but-get (or pos (point)) 'face hywiki-word-face))