Function: Info-handle-in-note

Info-handle-in-note is an autoloaded and byte-compiled function defined in hmouse-info.el.

Signature

(Info-handle-in-note)

Documentation

Follows an Info cross-reference.

If point is within the first line of an Info note (cross-reference), follows cross-reference and returns t; otherwise returns nil.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hmouse-info.el
;;;###autoload
(defun Info-handle-in-note ()
  "Follows an Info cross-reference.
If point is within the first line of an Info note (cross-reference), follows
cross-reference and returns t; otherwise returns nil."
  (let ((note-name (Info-note-at-p)))
    (when note-name
      (Info-follow-reference note-name) t)))