Function: TeX-error-list-skip-warning-p
TeX-error-list-skip-warning-p is a byte-compiled function defined in
tex.el.
Signature
(TeX-error-list-skip-warning-p TYPE IGNORE)
Documentation
Decide if a warning of TeX-error-list should be skipped.
TYPE is one of the types listed in TeX-error-list, IGNORE
is the flag to choose if the warning should be skipped.
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
(defun TeX-error-list-skip-warning-p (type ignore)
"Decide if a warning of `TeX-error-list' should be skipped.
TYPE is one of the types listed in `TeX-error-list', IGNORE
is the flag to choose if the warning should be skipped."
;; The warning should be skipped if it...
(or
;; ...is a warning and we want to ignore all warnings, or...
(and (null TeX-debug-warnings)
(equal type 'warning))
;; ...is a bad-box and we want to ignore all bad-boxes, or...
(and (null TeX-debug-bad-boxes)
(equal type 'bad-box))
;; ...is a warning to be ignored.
(and TeX-suppress-ignored-warnings
ignore)))