summaryrefslogtreecommitdiff
path: root/cider.el
diff options
context:
space:
mode:
authorArtur Malabarba <bruce.connor.am@gmail.com>2016-06-06 16:09:22 -0300
committerArtur Malabarba <bruce.connor.am@gmail.com>2016-06-06 16:09:22 -0300
commitc8ad61452227b859d77e42fcbac32d8ef6a1778a (patch)
tree27ff263cf23254beeffbfd9948f5beae25f27007 /cider.el
parentdd07f59cbfbe49caaa9c9058a9b32ead4ca7d7ab (diff)
[Fix #1777] Correct custom spec for cider-preferred-build-tool
Diffstat (limited to 'cider.el')
-rw-r--r--cider.el5
1 files changed, 4 insertions, 1 deletions
diff --git a/cider.el b/cider.el
index 16d15dde..292934bf 100644
--- a/cider.el
+++ b/cider.el
@@ -154,7 +154,10 @@ variable will suppress this behavior and will select whatever build system
is indicated by the variable if present. Note, this is only when CIDER
cannot decide which of many build systems to use and will never override a
command when there is no ambiguity."
- :type '(choice "lein" "boot" "gradle")
+ :type '(choice (const "lein")
+ (const "boot")
+ (const "gradle")
+ (const :tag "Always ask" nil))
:group 'cider
:package-version '(cider . "0.13.0"))