Variable: TeX-output-mode-hook

TeX-output-mode-hook is a variable defined in tex.el.

Value

nil

Documentation

Hook run after entering TeX Output 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-output-mode TeX-special-mode "TeX Output"
  "Major mode for viewing TeX output.
\\{TeX-output-mode-map} "
  :syntax-table nil :abbrev-table nil :interactive nil
  (setq-local revert-buffer-function #'TeX-output-revert-buffer)
  ;; special-mode makes it read-only which prevents input from TeX.
  (setq buffer-read-only nil))