Function: Info-mouse-follow-nearest-node

Info-mouse-follow-nearest-node is an interactive and byte-compiled function defined in info.el.gz.

Signature

(Info-mouse-follow-nearest-node CLICK)

Documentation

Follow a node reference near point.

Like m (Info-menu), f (Info-follow-reference), n (Info-next), p (Info-prev) or ^ (Info-up) command, depending on where you click. At end of the node's text, moves to the next node, or up if none.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/info.el.gz
(defun Info-mouse-follow-nearest-node (click)
  "\\<Info-mode-map>Follow a node reference near point.
Like \\[Info-menu], \\[Info-follow-reference], \\[Info-next], \\[Info-prev] or \\[Info-up] command, depending on where you click.
At end of the node's text, moves to the next node, or up if none."
  (interactive "e" Info-mode)
  (mouse-set-point click)
  (and (not (Info-follow-nearest-node))
       (save-excursion (forward-line 1) (eobp))
       (Info-next-preorder)))