Function: hsys-org-target-at-p

hsys-org-target-at-p is a byte-compiled function defined in hsys-org.el.

Signature

(hsys-org-target-at-p)

Documentation

Return non-nil iff point is on an Org target or target link.

The target is the definition and the target link is the referent. Assume caller has already checked that the current buffer is in org-mode.

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-target-at-p ()
  "Return non-nil iff point is on an Org target or target link.
The target is the definition and the target link is the referent.
Assume caller has already checked that the current buffer is in
`org-mode'."
  (hsys-org-face-at-p 'org-target))