Function: Info-next-menu-item

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

Signature

(Info-next-menu-item)

Documentation

Go to the node of the next menu item.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/info.el.gz
(defun Info-next-menu-item ()
  "Go to the node of the next menu item."
  (interactive nil Info-mode)
  ;; Bind this in case the user sets it to nil.
  (let* ((case-fold-search t)
	 (node
	  (save-excursion
	    (forward-line -1)
	    (search-forward "\n* menu:" nil t)
	    (and (search-forward "\n* " nil t)
		 (Info-extract-menu-node-name)))))
    (if node (Info-goto-node node)
      (user-error "No more items in menu"))))