Function: Info-goto-index
Info-goto-index is a byte-compiled function defined in info.el.gz.
Signature
(Info-goto-index)
Documentation
Go to the first index node.
Source Code
;; Defined in /usr/src/emacs/lisp/info.el.gz
(defun Info-goto-index ()
"Go to the first index node."
(let ((node (car (Info-index-nodes))))
(or node (error "No index"))
(Info-goto-node node)))