Skip to content

Commit 7985960

Browse files
committed
Fix broken defcustom :type attributes
1 parent 778bbe3 commit 7985960

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

cider-eval.el

+3-3
Original file line numberDiff line numberDiff line change
@@ -122,9 +122,9 @@ Only applies when the *cider-inspect* buffer is currently visible."
122122
If nil, files are not saved.
123123
If 'prompt, the user is prompted to save the file if it's been modified.
124124
If t, save the file without confirmation."
125-
:type '(choice (const prompt :tag "Prompt to save the file if it's been modified")
126-
(const nil :tag "Don't save the file")
127-
(const t :tag "Save the file without confirmation"))
125+
:type '(choice (const :tag "Prompt to save the file if it's been modified" prompt)
126+
(const :tag "Don't save the file" nil)
127+
(const :tag "Save the file without confirmation" t))
128128
:group 'cider
129129
:package-version '(cider . "0.6.0"))
130130

cider-ns.el

+3-3
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,9 @@
7272
If nil, files are not saved.
7373
If 'prompt, the user is prompted to save files if they have been modified.
7474
If t, save the files without confirmation."
75-
:type '(choice (const prompt :tag "Prompt to save files if they have been modified")
76-
(const nil :tag "Don't save the files")
77-
(const t :tag "Save the files without confirmation"))
75+
:type '(choice (const :tag "Prompt to save files if they have been modified" prompt)
76+
(const :tag "Don't save the files" nil)
77+
(const :tag "Save the files without confirmation" t))
7878
:group 'cider
7979
:package-version '(cider . "0.15.0"))
8080

0 commit comments

Comments
 (0)