Mercurial > emacs
changeset 89486:fd954cd9d770
(tex-font-lock-syntactic-face-function): Use characterp.
author | Dave Love <fx@gnu.org> |
---|---|
date | Wed, 10 Sep 2003 17:50:37 +0000 |
parents | 34ec5d8a3281 |
children | b8b6645d8593 |
files | lisp/textmodes/tex-mode.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/textmodes/tex-mode.el Wed Sep 10 10:53:23 2003 +0000 +++ b/lisp/textmodes/tex-mode.el Wed Sep 10 17:50:37 2003 +0000 @@ -643,7 +643,7 @@ ((not char) font-lock-comment-face) ((eq char ?$) tex-math-face) (t - (when (char-valid-p char) + (when (characterp char) ;; This is a \verb?...? construct. Let's find the end and mark it. (save-excursion (skip-chars-forward (string ?^ char)) ;; Use `end' ?