diff options
| -rw-r--r-- | lisp/font-lock.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/font-lock.el b/lisp/font-lock.el index 4f183cd4230..adac03d3c1e 100644 --- a/lisp/font-lock.el +++ b/lisp/font-lock.el | |||
| @@ -2182,9 +2182,9 @@ This function could be MATCHER in a MATCH-ANCHORED `font-lock-keywords' item." | |||
| 2182 | '(quote bold-italic) 'keep) | 2182 | '(quote bold-italic) 'keep) |
| 2183 | ;; | 2183 | ;; |
| 2184 | ;; Old-style bf/em/it/sl. Stop at `\\' and un-escaped `&', for tables. | 2184 | ;; Old-style bf/em/it/sl. Stop at `\\' and un-escaped `&', for tables. |
| 2185 | (list (concat "\\\\\\(\\(bf\\)\\|em\\|it\\(em\\)?\\|sl\\)\\>" | 2185 | (list (concat "\\\\\\(\\(bf\\)\\|em\\|it\\|sl\\)\\>" |
| 2186 | "\\(\\([^}&\\]\\|\\\\[^\\]\\)+\\)") | 2186 | "\\(\\([^}&\\]\\|\\\\[^\\]\\)+\\)") |
| 2187 | 4 '(if (match-beginning 2) 'bold 'italic) 'keep) | 2187 | 3 '(if (match-beginning 2) 'bold 'italic) 'keep) |
| 2188 | )))) | 2188 | )))) |
| 2189 | "Gaudy expressions to highlight in TeX modes.") | 2189 | "Gaudy expressions to highlight in TeX modes.") |
| 2190 | 2190 | ||