Variable: TeX-style-hook-list
TeX-style-hook-list is a variable defined in tex.el.
Value
nil
Documentation
List of TeX style hooks currently loaded.
Each entry is a list:
(STYLE HOOK1 HOOK2 ...)
where the first element STYLE is the name of the style, and the remaining elements HOOKN, if any, are hooks to be run when that style is active.
A hook HOOKN may be a hook function HOOK-FUN to be run in all TeX dialects (LaTeX, Texinfo, etc.), or a vector like:
[TeX-style-hook HOOK-FUN DIALECT-SET]
where HOOK-FUN is the hook function to be run, and DIALECT-SET is a non-empty set of dialects in which the hook function may be run.
This set is instantiated by function TeX-add-style-hook through
functions manipulating style hook dialect expression named with a
TeX-shdex- prefix.
For supported dialects, see variables TeX-style-hook-dialect.
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
(defvar TeX-style-hook-list nil
"List of TeX style hooks currently loaded.
Each entry is a list:
(STYLE HOOK1 HOOK2 ...)
where the first element STYLE is the name of the style, and the
remaining elements HOOKN, if any, are hooks to be run when that
style is active.
A hook HOOKN may be a hook function HOOK-FUN to be run in
all TeX dialects (LaTeX, Texinfo, etc.), or a vector like:
[TeX-style-hook HOOK-FUN DIALECT-SET]
where HOOK-FUN is the hook function to be run, and DIALECT-SET is
a non-empty set of dialects in which the hook function may be
run.
This set is instantiated by function `TeX-add-style-hook' through
functions manipulating style hook dialect expression named with a
`TeX-shdex-' prefix.
For supported dialects, see variables `TeX-style-hook-dialect'.")