Function: hsys-org-internal-target-def-at-p
hsys-org-internal-target-def-at-p is a byte-compiled function defined
in hsys-org.el.
Signature
(hsys-org-internal-target-def-at-p)
Documentation
Return target region iff point is on <<internal target>> definition.
Target 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-def-at-p ()
"Return target region iff point is on <<internal target>> definition.
Target region is (start . end) and includes any delimiters, else nil."
(when (hsys-org-target-at-p)
(save-excursion
(unless (looking-at org-target-regexp)
(goto-char (or (hproperty:char-property-start (point) 'face 'org-target)
(point-min))))
(when (looking-at "<<")
(goto-char (match-end 0)))
(and (hsys-org-face-at-p 'org-target)
(hproperty:char-property-range (point) 'face 'org-target)))))