diff options
author | Masatake YAMATO <yamato@redhat.com> | 2010-09-07 19:45:12 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2010-09-07 19:45:12 -0700 |
commit | 33bd47beb4a1157447a29f45167a0628f73224ec (patch) | |
tree | c1aca36102cb3a755a29ce2648807c1e732d2e00 /lisp/progmodes/antlr-mode.el | |
parent | a552b35afa83816d3a4bfaa32be91c196a68e41b (diff) | |
download | emacs-33bd47beb4a1157447a29f45167a0628f73224ec.tar.gz |
Close bug#6976.
* lisp/progmodes/antlr-mode.el (antlr-font-lock-additional-keywords): Fix typo.
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 4e93c547881..82b532e9cd5 100644 --- a/lisp/progmodes/antlr-mode.el +++ b/lisp/progmodes/antlr-mode.el @@ -951,7 +951,7 @@ group. The string matched by the first group is highlighted with (3 antlr-keyword-face) (4 (if (member (match-string 4) '("Lexer" "Parser" "TreeParser")) antlr-keyword-face - type-face))) + font-lock-type-face))) (,(lambda (limit) (antlr-re-search-forward "\\<\\(header\\|options\\|tokens\\|exception\\|catch\\|returns\\)\\>" |