aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Albinus2025-12-12 17:01:31 +0100
committerMichael Albinus2025-12-12 17:01:31 +0100
commit74cbef7c45f2cbff99679ef54656ba369b049f71 (patch)
treecd8475cc4ba5c427c57422eee2f4704f9984fbd0
parent251c070dfde8996189bfb808a0b6f6f5925091b8 (diff)
downloademacs-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.el2
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
751option \"-glib\" which is automatically suggested if necessary. 751option \"-glib\" which is automatically suggested if necessary.
752 752
753OBSOLETE as user option - customize version dependent user options." 753OBSOLETE 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