# HG changeset patch # User Karl Heuer # Date 928005607 0 # Node ID 3bd2587c06395db616e070e44630f5d0c48f6d7b # Parent a6b268f4dfc7e2139e1b618771383ebcb75fcb18 (font-lock-apply-syntactic-highlight): Don't die if VALUE is a syntax table. diff -r a6b268f4dfc7 -r 3bd2587c0639 lisp/font-lock.el --- 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.