Variable: LaTeX-warnings-regexp

LaTeX-warnings-regexp is a variable defined in tex.el.

Value

"\\(?:LaTeX\\|Class\\|Package\\|\\*\\) [-A-Za-z0-9]* ?[Ww]arning:"

Documentation

Regexp matching LaTeX warnings.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
;; This regexp should catch warnings of the type
;;   LaTeX Warning: ...
;;   LaTeX Font Warning: ...
;;   Package xyz123 Warning: ...
;;   Class xyz123 Warning: ...
(defvar LaTeX-warnings-regexp
  "\\(?:LaTeX\\|Class\\|Package\\|\\*\\) [-A-Za-z0-9]* ?[Ww]arning:"
  "Regexp matching LaTeX warnings.")