Variable: TeX-error-overview-mode-hook
TeX-error-overview-mode-hook is a variable defined in tex.el.
Value
nil
Documentation
Hook run after entering TeX errors mode.
No problems result if this variable is not bound.
add-hook automatically binds it. (This is true for all hook variables.)
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
(define-derived-mode TeX-error-overview-mode tabulated-list-mode
"TeX errors"
"Major mode for listing TeX errors."
:syntax-table nil :abbrev-table nil :interactive nil
(setq tabulated-list-format [("File" 25 nil)
("Line" 4 nil :right-align t)
("Type" 7 nil)
("Message" 0 nil)]
tabulated-list-padding 1
tabulated-list-entries TeX-error-overview-list-entries)
(tabulated-list-init-header)
(tabulated-list-print))