Function: xref--item-at-point
xref--item-at-point is a byte-compiled function defined in
hsys-xref.el.
Signature
(xref--item-at-point)
Documentation
Fix next xref function to handle when called at beginning of buffer.
Aliases
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hsys-xref.el
;;; ************************************************************************
;;; Private functions
;;; ************************************************************************
(defun xref--item-at-point ()
"Fix next xref function to handle when called at beginning of buffer."
(get-text-property
(max (point-min) (if (eolp) (1- (point)) (point)))
'xref-item))