Skip to content

Commit d82417c

Browse files
syohexbbatsov
authored andcommitted
Remove needless quote of choice values
1 parent b6f41d7 commit d82417c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

clojure-mode.el

+4-4
Original file line numberDiff line numberDiff line change
@@ -141,10 +141,10 @@ to indent function forms.
141141
merge
142142
some-coll)"
143143
:safe #'symbolp
144-
:type '(choice (const :tag "Same as `lisp-mode'" 'always-align)
145-
(const :tag "Indent like a macro body" 'always-indent)
144+
:type '(choice (const :tag "Same as `lisp-mode'" always-align)
145+
(const :tag "Indent like a macro body" always-indent)
146146
(const :tag "Indent like a macro body unless first arg is on the same line"
147-
'align-arguments))
147+
align-arguments))
148148
:package-version '(clojure-mode . "5.2.0"))
149149

150150
(defcustom clojure-use-backtracking-indent t
@@ -1143,7 +1143,7 @@ will align the values like this:
11431143
:type `(choice (const :tag "Make blank lines prevent vertical alignment from happening."
11441144
,clojure--align-separator-newline-regexp)
11451145
(other :tag "Allow blank lines to happen within a vertically-aligned expression."
1146-
'entire)))
1146+
entire)))
11471147

11481148
(defcustom clojure-align-reader-conditionals nil
11491149
"Whether to align reader conditionals, as if they were maps."

0 commit comments

Comments
 (0)