diff options
| author | Luc Teirlinck | 2006-04-21 23:41:23 +0000 |
|---|---|---|
| committer | Luc Teirlinck | 2006-04-21 23:41:23 +0000 |
| commit | 09c6126c467b98605bc70aaaf8c5fa4223dac7d1 (patch) | |
| tree | 7c211deb7129b65a4e926a5e397a37cb6ce91bf1 /lisp/progmodes | |
| parent | dbc1f997bd4a4e9e6d80e40abfa50e4442cfb941 (diff) | |
| download | emacs-09c6126c467b98605bc70aaaf8c5fa4223dac7d1.tar.gz emacs-09c6126c467b98605bc70aaaf8c5fa4223dac7d1.zip | |
(antlr-default): Avoid nil spec in defface.
Diffstat (limited to 'lisp/progmodes')
| -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 7ddd9212f6c..e31a94030c3 100644 --- a/lisp/progmodes/antlr-mode.el +++ b/lisp/progmodes/antlr-mode.el | |||
| @@ -829,7 +829,7 @@ in the grammar's actions and semantic predicates, see | |||
| 829 | `antlr-font-lock-maximum-decoration'.") | 829 | `antlr-font-lock-maximum-decoration'.") |
| 830 | 830 | ||
| 831 | (defvar antlr-default-face 'antlr-default) | 831 | (defvar antlr-default-face 'antlr-default) |
| 832 | (defface antlr-default nil | 832 | (defface antlr-default '((t nil)) |
| 833 | "Face to prevent strings from language dependent highlighting. | 833 | "Face to prevent strings from language dependent highlighting. |
| 834 | Do not change." | 834 | Do not change." |
| 835 | :group 'antlr) | 835 | :group 'antlr) |