diff options
| author | Michael Albinus | 2025-12-12 17:01:31 +0100 |
|---|---|---|
| committer | Michael Albinus | 2025-12-12 17:01:31 +0100 |
| commit | 74cbef7c45f2cbff99679ef54656ba369b049f71 (patch) | |
| tree | cd8475cc4ba5c427c57422eee2f4704f9984fbd0 | |
| parent | 251c070dfde8996189bfb808a0b6f6f5925091b8 (diff) | |
| download | emacs-74cbef7c45f2cbff99679ef54656ba369b049f71.tar.gz emacs-74cbef7c45f2cbff99679ef54656ba369b049f71.zip | |
Fix :type in `antlr-tool-command'
* lisp/progmodes/antlr-mode.el (antlr-tool-command): Give it a
proper :type.
| -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 15c774a35d6..b31e44c3581 100644 --- a/lisp/progmodes/antlr-mode.el +++ b/lisp/progmodes/antlr-mode.el | |||
| @@ -751,7 +751,7 @@ This variable should include all options passed to Antlr except the | |||
| 751 | option \"-glib\" which is automatically suggested if necessary. | 751 | option \"-glib\" which is automatically suggested if necessary. |
| 752 | 752 | ||
| 753 | OBSOLETE as user option - customize version dependent user options." | 753 | OBSOLETE as user option - customize version dependent user options." |
| 754 | :type 'string) | 754 | :type '(choice (const nil) string)) |
| 755 | 755 | ||
| 756 | (defcustom antlr-v4-tool-command "java org.antlr.v4.Tool" | 756 | (defcustom antlr-v4-tool-command "java org.antlr.v4.Tool" |
| 757 | ;; you probably also need to add s/th like | 757 | ;; you probably also need to add s/th like |