Mercurial > emacs
diff lisp/font-lock.el @ 24791:3bd2587c0639
(font-lock-apply-syntactic-highlight): Don't die if
VALUE is a syntax table.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Sat, 29 May 1999 19:20:07 +0000 |
parents | 93b7e7e88a80 |
children | 44087df57d4f |
line wrap: on
line diff
--- a/lisp/font-lock.el Sat May 29 19:15:10 1999 +0000 +++ b/lisp/font-lock.el Sat May 29 19:20:07 1999 +0000 @@ -1232,7 +1232,7 @@ (start (match-beginning match)) (end (match-end match)) (value (nth 1 highlight)) (override (nth 2 highlight))) - (unless (numberp (car value)) + (unless (numberp (car-safe value)) (setq value (eval value))) (cond ((not start) ;; No match but we might not signal an error.