summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Klinghed <the_jk@spawned.biz>2022-11-08 17:40:01 +0100
committerJoel Klinghed <the_jk@spawned.biz>2022-11-08 17:40:01 +0100
commit63e1d4ba62fb9b05e91bf0c0abc2729db10032bf (patch)
tree2b6eeb5e001bcc648bb0fcecf7c8b0ecd1fefe8f
parent2f60b3972154ab3a0795c61fb28de7d94aa0bb3a (diff)
Use correct syntax
-rw-r--r--flycheck-android-experimental.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/flycheck-android-experimental.el b/flycheck-android-experimental.el
index 4b781eb..601a180 100644
--- a/flycheck-android-experimental.el
+++ b/flycheck-android-experimental.el
@@ -34,12 +34,12 @@
:safe #'stringp)
(make-variable-buffer-local 'flycheck-android-java-checkstyle-properties)
-(flycheck-def-option-var flycheck-android-variant nil android-java android-kotlin
+(flycheck-def-option-var flycheck-android-variant nil '(android-java android-kotlin)
"Variant to select instead of first."
:safe #'stringp)
(make-variable-buffer-local 'flycheck-android-variant)
-(flycheck-def-option-var flycheck-android-skip-gen nil android-java android-kotlin
+(flycheck-def-option-var flycheck-android-skip-gen nil '(android-java android-kotlin)
"Set to non-nil if generate*Sources task should not be run before checking."
:safe #'stringp)
(make-variable-buffer-local 'flycheck-android-skip-gen)