Variable: TeX-error-description-list

TeX-error-description-list is a customizable variable defined in tex.el.

Value

nil

Documentation

User defined help messages for errors in TeX run.

See TeX-error-description-list-local for its format. All entries have higher priority than those in TeX-error-description-list-local. It must not have a fallback entry that matches any error.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
;;; Error Messages

(defcustom TeX-error-description-list nil
  "User defined help messages for errors in TeX run.
See `TeX-error-description-list-local' for its format.  All
entries have higher priority than those in
`TeX-error-description-list-local'.
It must not have a fallback entry that matches any error."
  :group 'TeX-output
  :type '(repeat (cons :tag "Entry"
                       (regexp :tag "Match")
                       (string :format "Description:\n%v"))))