Function: TeX-output-mode

TeX-output-mode is a byte-compiled function defined in tex.el.

Signature

(TeX-output-mode)

Documentation

Major mode for viewing TeX output.

b TeX-toggle-debug-bad-boxes
i #<anonymous-function>
n TeX-next-error
p TeX-previous-error
s #<anonymous-function>
w TeX-toggle-debug-warnings

In addition to any hooks its parent mode TeX-special-mode might have run, this mode runs the hook TeX-output-mode-hook, as the final or penultimate step during initialization.

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))