Function: Info-history

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

Signature

(Info-history)

Documentation

Go to a node with a menu of visited nodes.

Probably introduced at or before Emacs version 22.1.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/info.el.gz
(defun Info-history ()
  "Go to a node with a menu of visited nodes."
  (interactive nil Info-mode)
  (Info-find-node "*History*" "Top")
  (Info-next-reference)
  (Info-next-reference))