diff options
| author | Stefan Monnier <monnier@iro.umontreal.ca> | 2006-04-17 13:44:56 +0000 |
|---|---|---|
| committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2006-04-17 13:44:56 +0000 |
| commit | 43c50d22bc75543e5577f036fcd957162daf7086 (patch) | |
| tree | 426268d4cc5ed7830e24e3f5f8c01fd8039aeed8 | |
| parent | 8580639069942441f4b1f21e85bd8a945c5b291f (diff) | |
| download | emacs-43c50d22bc75543e5577f036fcd957162daf7086.tar.gz | |
(tex-font-lock-match-suscript): Paren typo.
| -rw-r--r-- | lisp/textmodes/tex-mode.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/textmodes/tex-mode.el b/lisp/textmodes/tex-mode.el index 0b0d60242bc..8ca7c3026e8 100644 --- a/lisp/textmodes/tex-mode.el +++ b/lisp/textmodes/tex-mode.el @@ -604,8 +604,8 @@ An alternative value is \" . \", if you use a font with a narrow period." (narrow-to-region (point-min) limit) (condition-case nil (scan-lists (point) 1 1) (error nil))))) (store-match-data (if end - (list (match-beginning 0) end beg end)) - (list beg beg beg beg)))) + (list (match-beginning 0) end beg end) + (list beg beg beg beg))))) t)) (defconst tex-font-lock-keywords-3 |
