diff options
| author | Stefan Monnier | 2005-04-06 15:45:00 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2005-04-06 15:45:00 +0000 |
| commit | 797bf075e1b53ecd92fa7e4e91f893b55e4a569d (patch) | |
| tree | b34554340b8a8877834bfe9b61c192cc12e73164 /lisp/textmodes | |
| parent | 7c0d88969cc615068d793784b452a1dfb0691952 (diff) | |
| download | emacs-797bf075e1b53ecd92fa7e4e91f893b55e4a569d.tar.gz emacs-797bf075e1b53ecd92fa7e4e91f893b55e4a569d.zip | |
(tex-font-lock-keywords-2): Add \bfseries.
Diffstat (limited to 'lisp/textmodes')
| -rw-r--r-- | lisp/textmodes/tex-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
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 | ||