factor.el: fix for empty strings font lock.

db4
jao 2008-11-15 03:52:20 +01:00
parent a13c6a4655
commit 9099b12603
1 changed files with 1 additions and 0 deletions

View File

@ -103,6 +103,7 @@
(" !.*$" . font-lock-comment-face) (" !.*$" . font-lock-comment-face)
("( .* )" . font-lock-comment-face) ("( .* )" . font-lock-comment-face)
("\"[^ ][^\"]*\"" . font-lock-string-face) ("\"[^ ][^\"]*\"" . font-lock-string-face)
("\"\"" . font-lock-string-face)
("\\(P\\|SBUF\\)\"" 1 font-lock-keyword-face) ("\\(P\\|SBUF\\)\"" 1 font-lock-keyword-face)
,@(mapcar #'(lambda (w) (cons (concat "\\(^\\| \\)\\(" w "\\)\\($\\| \\)") ,@(mapcar #'(lambda (w) (cons (concat "\\(^\\| \\)\\(" w "\\)\\($\\| \\)")
'(2 font-lock-keyword-face))) '(2 font-lock-keyword-face)))