Function: hsys-org-internal-target-at-p
hsys-org-internal-target-at-p is a byte-compiled function defined in
hsys-org.el.
Signature
(hsys-org-internal-target-at-p)
Documentation
Return target region iff point is on an <<internal target>> or a link to one.
The region is (start . end) and includes any delimiters, else nil.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hsys-org.el
(defun hsys-org-internal-target-at-p ()
"Return target region iff point is on an <<internal target>> or a link to one.
The region is (start . end) and includes any delimiters, else nil."
(and (or (hsys-org-internal-target-def-at-p)
(hsys-org-internal-target-link-at-p))
(hproperty:char-property-range (point) 'face 'org-target)))