branch: externals/auctex
commit ce8981a1a087afe87be738549f863ffb243f0748
Author: Tassilo Horn <[email protected]>
Commit: Tassilo Horn <[email protected]>
Fontify math environment
* font-latex.el (font-latex-math-environments): Add math
environment.
---
ChangeLog | 5 +++++
font-latex.el | 2 +-
2 files changed, 6 insertions(+), 1 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index cdecc30..5eb3ef7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2015-10-04 Tassilo Horn <[email protected]>
+
+ * font-latex.el (font-latex-math-environments): Add math
+ environment.
+
2015-10-04 Mos� Giordano <[email protected]>
* tex.el (TeX-command-list): Add MkIV to `TeX-command-list'.
diff --git a/font-latex.el b/font-latex.el
index aae5cbe..12ebd04 100644
--- a/font-latex.el
+++ b/font-latex.el
@@ -1710,7 +1710,7 @@ END marks boundaries for searching for environment ends."
nil)))
(defcustom font-latex-math-environments
- '("display" "displaymath" "equation" "eqnarray" "gather" "multline"
+ '("display" "displaymath" "equation" "eqnarray" "gather" "math" "multline"
"align" "alignat" "xalignat" "xxalignat" "flalign")
"List of math environment names for font locking."
:type '(repeat string)