diff options
author | Glenn Morris <rgm@gnu.org> | 2008-10-04 18:37:03 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2008-10-04 18:37:03 +0000 |
commit | 244a0c3ce7790056bf8745db11b364d32f9d8372 (patch) | |
tree | 06724c82389c6f1af8b23ad3aef8f4a9ce7082f2 /lisp/progmodes/antlr-mode.el | |
parent | 7d2f1216b7ef820bd964b5fe0ca7d38be8e8fd2e (diff) | |
download | emacs-244a0c3ce7790056bf8745db11b364d32f9d8372.tar.gz |
David J. Biesack <David.Biesack at sas.com> (tiny change)
(antlr-font-lock-additional-keywords): Fix typo. (Bug#1074)
Diffstat (limited to 'lisp/progmodes/antlr-mode.el')
-rw-r--r-- | lisp/progmodes/antlr-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/antlr-mode.el b/lisp/progmodes/antlr-mode.el index 25e3f7f003c..39342d2a5bb 100644 --- a/lisp/progmodes/antlr-mode.el +++ b/lisp/progmodes/antlr-mode.el @@ -929,7 +929,7 @@ group. The string matched by the first group is highlighted with `((antlr-invalidate-context-cache) ("\\$setType[ \t]*(\\([A-Za-z\300-\326\330-\337]\\sw*\\))" (1 antlr-tokendef-face)) - ("\\$\\sw+" (0 keyword-face)) + ("\\$\\sw+" (0 antlr-keyword-face)) ;; the tokens are already fontified as string/docstrings: (,(lambda (limit) (if antlr-font-lock-literal-regexp |