Variable: preview-dumped-alist

preview-dumped-alist is a variable defined in preview.el.

Value

nil

Documentation

Alist of dumped masters.

The elements are (NAME . ASSOC). NAME is the master file name (without extension), ASSOC is what to do with regard to this format. Possible values: nil means no format is available and none should be generated. t means no format is available, it should be generated on demand. If the value is a cons cell, the CAR of the cons cell is the name of output master file, the CADR of the cons cell is the command with which the format has been generated, and the CDDR is some Emacs-flavor specific value used for maintaining a watch on possible changes of the preamble.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/preview.el
(defvar preview-dumped-alist nil
  "Alist of dumped masters.
The elements are (NAME . ASSOC).  NAME is the master file name (without
extension), ASSOC is what to do with regard to this format.  Possible
values: nil means no format is available and none should be generated.
t means no format is available, it should be generated on demand.  If
the value is a cons cell, the CAR of the cons cell is the name of output
master file, the CADR of the cons cell is the command with which the
format has been generated, and the CDDR is some Emacs-flavor specific
value used for maintaining a watch on possible changes of the preamble.")