Variable: TeX-ignore-warnings

TeX-ignore-warnings is a customizable variable defined in tex.el.

Value

nil

Documentation

Controls which warnings are to be ignored.

It can be either a regexp matching warnings to be ignored, or a symbol with the name of a custom function taking as arguments all the information of the warning listed in TeX-error-list, except the last one about whether to ignore the warning.

If you want to use the custom function, see how it is used in the code of TeX-warning.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
(defcustom TeX-ignore-warnings nil
  "Controls which warnings are to be ignored.

It can be either a regexp matching warnings to be ignored, or a
symbol with the name of a custom function taking as arguments all
the information of the warning listed in `TeX-error-list', except
the last one about whether to ignore the warning.

If you want to use the custom function, see how it is used in the
code of `TeX-warning'."
  :group 'TeX-command
  :type '(choice (const  :tag "Do not ignore anything" nil)
                 (string :tag "Regexp")
                 (symbol :tag "Function name")))