Function: TeX-toggle-debug-bad-boxes

TeX-toggle-debug-bad-boxes is an interactive and byte-compiled function defined in tex.el.

Signature

(TeX-toggle-debug-bad-boxes)

Documentation

Toggle if the debugger should display "bad boxes" too.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
(defun TeX-toggle-debug-bad-boxes ()
  "Toggle if the debugger should display \"bad boxes\" too."
  (interactive)
  (setq TeX-debug-bad-boxes (not TeX-debug-bad-boxes))
  (message (concat "TeX-debug-bad-boxes: "
                   (if TeX-debug-bad-boxes "on" "off"))))