diff options
| author | Masatake YAMATO | 2010-09-07 19:45:12 -0700 |
|---|---|---|
| committer | Glenn Morris | 2010-09-07 19:45:12 -0700 |
| commit | 33bd47beb4a1157447a29f45167a0628f73224ec (patch) | |
| tree | c1aca36102cb3a755a29ce2648807c1e732d2e00 | |
| parent | a552b35afa83816d3a4bfaa32be91c196a68e41b (diff) | |
| download | emacs-33bd47beb4a1157447a29f45167a0628f73224ec.tar.gz emacs-33bd47beb4a1157447a29f45167a0628f73224ec.zip | |
Close bug#6976.
* lisp/progmodes/antlr-mode.el (antlr-font-lock-additional-keywords): Fix typo.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/progmodes/antlr-mode.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index b8fd151f001..20f10b25a83 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2010-09-08 Masatake YAMATO <yamato@redhat.com> | ||
| 2 | |||
| 3 | * progmodes/antlr-mode.el (antlr-font-lock-additional-keywords): | ||
| 4 | Fix typo. (Bug#6976) | ||
| 5 | |||
| 1 | 2010-09-06 Vinicius Jose Latorre <viniciusjl@ig.com.br> | 6 | 2010-09-06 Vinicius Jose Latorre <viniciusjl@ig.com.br> |
| 2 | 7 | ||
| 3 | * whitespace.el: Allow cleaning up blanks without blank | 8 | * whitespace.el: Allow cleaning up blanks without blank |
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 | |||
| 951 | (3 antlr-keyword-face) | 951 | (3 antlr-keyword-face) |
| 952 | (4 (if (member (match-string 4) '("Lexer" "Parser" "TreeParser")) | 952 | (4 (if (member (match-string 4) '("Lexer" "Parser" "TreeParser")) |
| 953 | antlr-keyword-face | 953 | antlr-keyword-face |
| 954 | type-face))) | 954 | font-lock-type-face))) |
| 955 | (,(lambda (limit) | 955 | (,(lambda (limit) |
| 956 | (antlr-re-search-forward | 956 | (antlr-re-search-forward |
| 957 | "\\<\\(header\\|options\\|tokens\\|exception\\|catch\\|returns\\)\\>" | 957 | "\\<\\(header\\|options\\|tokens\\|exception\\|catch\\|returns\\)\\>" |