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

    [#3606] Fix incorrect defcustom :type attribute
---
 cider-ns.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/cider-ns.el b/cider-ns.el
index 4f64083737..1f56c20998 100644
--- a/cider-ns.el
+++ b/cider-ns.el
@@ -83,8 +83,8 @@ If t, save the files without confirmation."
 If a list of modes, any buffers visiting files on the classpath whose major
 mode is derived from any of the modes might be saved.
 If t, all buffers visiting files on the classpath might be saved."
-  :type '(choice listp
-                 (const t))
+  :type '(choice (repeat :tag "Enable for specific modes" symbol)
+                 (const :tag "Always" t))
   :group 'cider
   :package-version '(cider . "0.21.0"))
 

Reply via email to