Mercurial > emacs
changeset 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 | a6b268f4dfc7 |
children | c4e546aa9dd5 |
files | lisp/font-lock.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
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.