Variable: TeX-error-description-list-local

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

Value

((".*" . "No help available"))

Documentation

Buffer local help messages for errors in TeX run.

A list of the form (ERR-REGEXP . CONTEXT) used by function TeX-help-error to display help-text on an error message or warning. ERR-REGEXP should be a regular expression matching the error message given from TeX/LaTeX, and CONTEXT should be some lines describing that error. Major modes of AUCTeX can set its own catalogue as buffer local value of this variable, as LaTeX mode does. Style files of AUCTeX can also add their own entries to buffer local value of this variable to provide their own help messages. It must end with a fallback entry that matches any error, for example
(".*" . "No help available")

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
(defvar TeX-error-description-list-local
  '((".*" . "No help available"))
  "Buffer local help messages for errors in TeX run.
A list of the form (ERR-REGEXP . CONTEXT) used by function
`TeX-help-error' to display help-text on an error message or warning.
ERR-REGEXP should be a regular expression matching the error message
given from TeX/LaTeX, and CONTEXT should be some lines describing that
error.
Major modes of AUCTeX can set its own catalogue as buffer local
value of this variable, as LaTeX mode does.
Style files of AUCTeX can also add their own entries to buffer local
value of this variable to provide their own help messages.
It must end with a fallback entry that matches any error, for example
\(\".*\" . \"No help available\")")