Variable: reftex-save-parse-info

reftex-save-parse-info is a customizable variable defined in reftex-vars.el.gz.

Value

nil

Documentation

Non-nil means, save information gathered with parsing in a file.

The file MASTER.rel in the same directory as MASTER.tex is used to save the information. When this variable is t,
- accessing the parsing information for the first time in an editing session
  will read that file (if available) instead of parsing the document.
- exiting Emacs or killing a buffer in reftex-mode(var)/reftex-mode(fun) will cause a new version
  of the file to be written.

Probably introduced at or before Emacs version 20.3.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/reftex-vars.el.gz
(defcustom reftex-save-parse-info nil
  "Non-nil means, save information gathered with parsing in a file.
The file MASTER.rel in the same directory as MASTER.tex is used to save the
information.  When this variable is t,
- accessing the parsing information for the first time in an editing session
  will read that file (if available) instead of parsing the document.
- exiting Emacs or killing a buffer in `reftex-mode' will cause a new version
  of the file to be written."
  :group 'reftex-optimizations-for-large-documents
  :type 'boolean)