Function: TeX-special-mode

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

Signature

(TeX-special-mode)

Documentation

Major mode derived from special-mode by define-derived-mode.

It inherits all of the parent's attributes, but has its own keymap:

  TeX-special-mode-map

which more-or-less shadows special-mode's corresponding table.

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

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
;;; Output mode

(define-derived-mode TeX-special-mode special-mode "TeX"
  :syntax-table nil :abbrev-table nil :interactive nil)