branch: elpa/clojure-mode commit d82417cf86644a4135c6d764aa901f69045fd5ca Author: Shohei YOSHIDA <syo...@gmail.com> Commit: Bozhidar Batsov <bozhi...@batsov.dev>
Remove needless quote of choice values --- clojure-mode.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/clojure-mode.el b/clojure-mode.el index fd902c2ba1..90fc6bdf15 100644 --- a/clojure-mode.el +++ b/clojure-mode.el @@ -141,10 +141,10 @@ to indent function forms. merge some-coll)" :safe #'symbolp - :type '(choice (const :tag "Same as `lisp-mode'" 'always-align) - (const :tag "Indent like a macro body" 'always-indent) + :type '(choice (const :tag "Same as `lisp-mode'" always-align) + (const :tag "Indent like a macro body" always-indent) (const :tag "Indent like a macro body unless first arg is on the same line" - 'align-arguments)) + align-arguments)) :package-version '(clojure-mode . "5.2.0")) (defcustom clojure-use-backtracking-indent t @@ -1143,7 +1143,7 @@ will align the values like this: :type `(choice (const :tag "Make blank lines prevent vertical alignment from happening." ,clojure--align-separator-newline-regexp) (other :tag "Allow blank lines to happen within a vertically-aligned expression." - 'entire))) + entire))) (defcustom clojure-align-reader-conditionals nil "Whether to align reader conditionals, as if they were maps."