Variable: font-latex-math-environments
font-latex-math-environments is a customizable variable defined in
font-latex.el.
Value
nil
Documentation
List of math environment names for font locking.
It is no longer recommended to customize this option. You should
customize texmathp-tex-commands instead because it is important
for stable operation of font lock that this option is coherent
with that option in addition to texmathp-tex-commands-default.
See info node (auctex)Fontification of math to convert your
customization into texmathp-tex-commands.
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/font-latex.el
(defcustom font-latex-math-environments nil
"List of math environment names for font locking.
It is no longer recommended to customize this option. You should
customize `texmathp-tex-commands' instead because it is important
for stable operation of font lock that this option is coherent
with that option in addition to `texmathp-tex-commands-default'.
See info node `(auctex)Fontification of math' to convert your
customization into `texmathp-tex-commands'."
;; This option is now used only through
;; `font-latex--match-math-envII-regexp'.
:type '(repeat string)
:group 'font-latex)