Variable: help-xref-forward-stack

help-xref-forward-stack is a buffer-local variable defined in help-mode.el.gz.

Documentation

A stack used to navigate help forwards after using the back button.

Used by help-follow-symbol and help-xref-go-forward. An element looks like (POSITION FUNCTION ARGS...). To use the element, do (apply FUNCTION ARGS) then goto the point.

Source Code

;; Defined in /usr/src/emacs/lisp/help-mode.el.gz
(defvar-local help-xref-forward-stack nil
  "A stack used to navigate help forwards after using the back button.
Used by `help-follow-symbol' and `help-xref-go-forward'.
An element looks like (POSITION FUNCTION ARGS...).
To use the element, do (apply FUNCTION ARGS) then goto the point.")