]> git.eshelyaron.com Git - emacs.git/commitdiff
(tex-font-lock-keywords-2): Add \bfseries.
authorStefan Monnier <monnier@iro.umontreal.ca>
Wed, 6 Apr 2005 15:45:00 +0000 (15:45 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Wed, 6 Apr 2005 15:45:00 +0000 (15:45 +0000)
lisp/ChangeLog
lisp/textmodes/tex-mode.el

index f7a478ce2b5f67a40fff9f0d10c814c1b5faaea2..4d3259dc7108a5842fa1108d6f20b874490e34c9 100644 (file)
@@ -1,5 +1,7 @@
 2005-04-06  Stefan Monnier  <monnier@iro.umontreal.ca>
 
+       * textmodes/tex-mode.el (tex-font-lock-keywords-2): Add \bfseries.
+
        * fast-lock.el:
        * lazy-lock.el: Move them to the obsolete subdir.
 
index cc9ed23c6be93975f55802069c999bb4d3e72c07..ab549d47b6e754c7de3900ee3cbfbc77a0ba534b 100644 (file)
@@ -573,7 +573,7 @@ An alternative value is \" . \", if you use a font with a narrow period."
              2 '(tex-font-lock-append-prop 'italic) 'append)
        ;; This is separate from the previous one because of cases like
        ;; {\em foo {\bf bar} bla} where both match.
-       (list (concat "\\\\\\(bf\\)\\>" args)
+       (list (concat "\\\\\\(bf\\(series\\)?\\)\\>" args)
              2 '(tex-font-lock-append-prop 'bold) 'append)))))
    "Gaudy expressions to highlight in TeX modes.")