Function: Info-nth-menu-item
Info-nth-menu-item is an interactive and byte-compiled function
defined in info.el.gz.
Signature
(Info-nth-menu-item)
Documentation
Go to the node of the Nth menu item.
N is the digit argument used to invoke this command.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/info.el.gz
(defun Info-nth-menu-item ()
"Go to the node of the Nth menu item.
N is the digit argument used to invoke this command."
(interactive nil Info-mode)
(Info-goto-node
(Info-extract-menu-counting
(- (aref (this-command-keys) (1- (length (this-command-keys)))) ?0))))