diff options
| author | Andreas Schwab | 2005-10-10 09:47:24 +0000 |
|---|---|---|
| committer | Andreas Schwab | 2005-10-10 09:47:24 +0000 |
| commit | 9bf211adf26ea43c4aa4eb92ec33dcd1a5361a53 (patch) | |
| tree | 53110738a0729c81a6645fd45417e2ca75cf85cd | |
| parent | fde7576e52b949afd0931d62475f973c947489cf (diff) | |
| download | emacs-9bf211adf26ea43c4aa4eb92ec33dcd1a5361a53.tar.gz emacs-9bf211adf26ea43c4aa4eb92ec33dcd1a5361a53.zip | |
(tex-font-lock-keywords-2): Adjust match number.
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/textmodes/tex-mode.el | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 40a27824574..3fb51eb15fb 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2005-10-10 Andreas Schwab <schwab@suse.de> | 1 | 2005-10-10 Andreas Schwab <schwab@suse.de> |
| 2 | 2 | ||
| 3 | * textmodes/tex-mode.el (tex-font-lock-keywords-2): Adjust match | ||
| 4 | number. Reported by Karl Chen <quarl@cs.berkeley.edu>. | ||
| 5 | |||
| 3 | * Makefile.in ($(lisp)/mh-e/mh-loaddefs.el): Fix for building | 6 | * Makefile.in ($(lisp)/mh-e/mh-loaddefs.el): Fix for building |
| 4 | outside source directory. | 7 | outside source directory. |
| 5 | 8 | ||
diff --git a/lisp/textmodes/tex-mode.el b/lisp/textmodes/tex-mode.el index 24267b7b8f2..3623c788882 100644 --- a/lisp/textmodes/tex-mode.el +++ b/lisp/textmodes/tex-mode.el | |||
| @@ -577,7 +577,7 @@ An alternative value is \" . \", if you use a font with a narrow period." | |||
| 577 | ;; This is separate from the previous one because of cases like | 577 | ;; This is separate from the previous one because of cases like |
| 578 | ;; {\em foo {\bf bar} bla} where both match. | 578 | ;; {\em foo {\bf bar} bla} where both match. |
| 579 | (list (concat "\\\\\\(bf\\(series\\)?\\)\\>" args) | 579 | (list (concat "\\\\\\(bf\\(series\\)?\\)\\>" args) |
| 580 | 2 '(tex-font-lock-append-prop 'bold) 'append))))) | 580 | 3 '(tex-font-lock-append-prop 'bold) 'append))))) |
| 581 | "Gaudy expressions to highlight in TeX modes.") | 581 | "Gaudy expressions to highlight in TeX modes.") |
| 582 | 582 | ||
| 583 | (defun tex-font-lock-suscript (pos) | 583 | (defun tex-font-lock-suscript (pos) |