Variable: TeX-error-list
TeX-error-list is a buffer-local variable defined in tex.el.
Documentation
List of warnings and errors.
Each element of the list is a list of information for a specific
error or warning. This is the structure of each element:
* 0: type (error, warning, bad-box)
* 1: file
* 2: line
* 3: message of the error or warning
* 4: offset
* 5: context, to be displayed in the help window
* 6: string to search in the buffer, in order to find location
of the error or warning
* 7: for warnings referring to multiple lines (for exapmle, bad boxes),
the last line mentioned in the warning message
* 8: t if it is a bad-box, nil otherwise
* 9: value of TeX-error-point
* 10: whether the warning should be ignored
This variable is intended to be set only in output buffer so it will be shared among all files of the same document.
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
;; `ignore' flag should be the always the last one in the list of information
;; for each error/warning, because it can be set within `TeX-warning' by a
;; custom function taking as argument all information present in
;; `TeX-error-list' but `ignore', see `TeX-ignore-warnings'.
(defvar-local TeX-error-list nil
"List of warnings and errors.
Each element of the list is a list of information for a specific
error or warning. This is the structure of each element:
* 0: type (error, warning, bad-box)
* 1: file
* 2: line
* 3: message of the error or warning
* 4: offset
* 5: context, to be displayed in the help window
* 6: string to search in the buffer, in order to find location
of the error or warning
* 7: for warnings referring to multiple lines (for exapmle, bad boxes),
the last line mentioned in the warning message
* 8: t if it is a bad-box, nil otherwise
* 9: value of `TeX-error-point'
* 10: whether the warning should be ignored
This variable is intended to be set only in output buffer so it
will be shared among all files of the same document.")