>From fad3b9a32315454498adc04c33cc4ea6b747cf4c Mon Sep 17 00:00:00 2001 From: Leo Liu Date: Sun, 16 May 2010 15:19:50 +0100 Subject: [PATCH 3/6] Fix a bug causing "Invalid face reference: quote" Reported in http://permalink.gmane.org/gmane.emacs.auctex.devel/2466. --- font-latex.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/font-latex.el b/font-latex.el index 62aae939..a3e37a86 100644 --- a/font-latex.el +++ b/font-latex.el @@ -547,7 +547,7 @@ (defun font-latex-keyword-matcher (prefix name face type) `(,(intern (concat prefix name)) ;; Quote a list of face properties but do not to quote a face symbol. (0 ,(if (and (listp face) (not (fboundp (car face)))) - `',face + `,face face)))) ((eq type 'declaration) `(,(intern (concat prefix name)) -- 1.8.2