Skip to content

Commit 957dfb2

Browse files
committed
Fix the choices for clojure-indent-style
1 parent 3a701b1 commit 957dfb2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

clojure-mode.el

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -137,10 +137,10 @@ to indent function forms.
137137
(reduce
138138
merge
139139
some-coll)"
140-
:type '(choice (const :tag "Same as `lisp-mode'" lisp)
141-
(const :tag "Indent like a macro body" always-body)
140+
:type '(choice (const :tag "Same as `lisp-mode'" :always-align)
141+
(const :tag "Indent like a macro body" :always-indent)
142142
(const :tag "Indent like a macro body unless first arg is on the same line"
143-
body-unless-same-line))
143+
:align-arguments))
144144
:package-version '(clojure-mode . "5.2.0"))
145145

146146
(define-obsolete-variable-alias 'clojure-defun-style-default-indent

0 commit comments

Comments
 (0)