branch: elpa/cider
commit 7985960ff3339ac0b5b79bed05542cb71eec9738
Author: Bozhidar Batsov <bozhi...@batsov.dev>
Commit: Bozhidar Batsov <bozhi...@batsov.dev>

    Fix broken defcustom :type attributes
---
 cider-eval.el | 6 +++---
 cider-ns.el   | 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/cider-eval.el b/cider-eval.el
index 3a02dab8b8..21e1b39ef1 100644
--- a/cider-eval.el
+++ b/cider-eval.el
@@ -122,9 +122,9 @@ Only applies when the *cider-inspect* buffer is currently 
visible."
 If nil, files are not saved.
 If 'prompt, the user is prompted to save the file if it's been modified.
 If t, save the file without confirmation."
-  :type '(choice (const prompt :tag "Prompt to save the file if it's been 
modified")
-                 (const nil :tag "Don't save the file")
-                 (const t :tag "Save the file without confirmation"))
+  :type '(choice (const :tag "Prompt to save the file if it's been modified" 
prompt)
+                 (const :tag "Don't save the file" nil)
+                 (const :tag "Save the file without confirmation" t))
   :group 'cider
   :package-version '(cider . "0.6.0"))
 
diff --git a/cider-ns.el b/cider-ns.el
index 5379c4c1f3..4f64083737 100644
--- a/cider-ns.el
+++ b/cider-ns.el
@@ -72,9 +72,9 @@
 If nil, files are not saved.
 If 'prompt, the user is prompted to save files if they have been modified.
 If t, save the files without confirmation."
-  :type '(choice (const prompt :tag "Prompt to save files if they have been 
modified")
-                 (const nil :tag "Don't save the files")
-                 (const t :tag "Save the files without confirmation"))
+  :type '(choice (const :tag "Prompt to save files if they have been modified" 
prompt)
+                 (const :tag "Don't save the files" nil)
+                 (const :tag "Save the files without confirmation" t))
   :group 'cider
   :package-version '(cider . "0.15.0"))
 

Reply via email to