Function: Info-history-forward

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

Signature

(Info-history-forward)

Documentation

Go forward in the history 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-forward ()
  "Go forward in the history of visited nodes."
  (interactive nil Info-mode)
  (or Info-history-forward
      (user-error "This is the last Info node you looked at"))
  (let ((history-forward (cdr Info-history-forward))
	filename nodename opoint)
    (setq filename (car (car Info-history-forward)))
    (setq nodename (car (cdr (car Info-history-forward))))
    (setq opoint (car (cdr (cdr (car Info-history-forward)))))
    (Info-find-node filename nodename)
    (setq Info-history-forward history-forward)
    (goto-char opoint)))