aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog2
-rw-r--r--lisp/textmodes/tex-mode.el2
2 files changed, 3 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index f7a478ce2b5..4d3259dc710 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,7 @@
12005-04-06 Stefan Monnier <monnier@iro.umontreal.ca> 12005-04-06 Stefan Monnier <monnier@iro.umontreal.ca>
2 2
3 * textmodes/tex-mode.el (tex-font-lock-keywords-2): Add \bfseries.
4
3 * fast-lock.el: 5 * fast-lock.el:
4 * lazy-lock.el: Move them to the obsolete subdir. 6 * lazy-lock.el: Move them to the obsolete subdir.
5 7
diff --git a/lisp/textmodes/tex-mode.el b/lisp/textmodes/tex-mode.el
index cc9ed23c6be..ab549d47b6e 100644
--- a/lisp/textmodes/tex-mode.el
+++ b/lisp/textmodes/tex-mode.el
@@ -573,7 +573,7 @@ An alternative value is \" . \", if you use a font with a narrow period."
573 2 '(tex-font-lock-append-prop 'italic) 'append) 573 2 '(tex-font-lock-append-prop 'italic) 'append)
574 ;; This is separate from the previous one because of cases like 574 ;; This is separate from the previous one because of cases like
575 ;; {\em foo {\bf bar} bla} where both match. 575 ;; {\em foo {\bf bar} bla} where both match.
576 (list (concat "\\\\\\(bf\\)\\>" args) 576 (list (concat "\\\\\\(bf\\(series\\)?\\)\\>" args)
577 2 '(tex-font-lock-append-prop 'bold) 'append))))) 577 2 '(tex-font-lock-append-prop 'bold) 'append)))))
578 "Gaudy expressions to highlight in TeX modes.") 578 "Gaudy expressions to highlight in TeX modes.")
579 579