Function: Info-next

Info-next is an interactive and byte-compiled function defined in info.el.gz.

Signature

(Info-next)

Documentation

Go to the "next" node, staying on the same hierarchical level.

This command doesn't descend into sub-nodes, like ] (Info-forward-node) does.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/info.el.gz
(defun Info-next ()
  "Go to the \"next\" node, staying on the same hierarchical level.
This command doesn't descend into sub-nodes, like \\<Info-mode-map>\\[Info-forward-node] does."
  (interactive nil Info-mode)
  ;; In case another window is currently selected
  (save-window-excursion
    (or (derived-mode-p 'Info-mode) (switch-to-buffer "*info*"))
    (Info-goto-node (Info-extract-pointer "next"))))