fix font-lock-keywords syntax

The syntax is (MATCHER . FACENAME) (note the dot).
This commit is contained in:
Noam Postavsky 2013-10-13 17:55:58 -04:00
parent d963c41a14
commit 79f3656b3e

View File

@ -823,8 +823,8 @@ Honour `yas-dont-activate', which see."
("${\\([0-9]+\\):?"
(0 font-lock-keyword-face)
(1 font-lock-warning-face t))
("${" font-lock-keyword-face)
("$[0-9]+?" font-lock-preprocessor-face)
("${" . font-lock-keyword-face)
("$[0-9]+?" . font-lock-preprocessor-face)
("\\(\\$(\\)" 1 font-lock-preprocessor-face)
("}"
(0 font-lock-keyword-face)))))