Function: TeX-toggle-debug-warnings
TeX-toggle-debug-warnings is an interactive and byte-compiled function
defined in tex.el.
Signature
(TeX-toggle-debug-warnings)
Documentation
Toggle if the debugger should display warnings too.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
(defun TeX-toggle-debug-warnings ()
"Toggle if the debugger should display warnings too."
(interactive)
(setq TeX-debug-warnings (not TeX-debug-warnings))
(message (concat "TeX-debug-warnings: "
(if TeX-debug-warnings "on" "off"))))