emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/clojure-mode d82417cf86: Remove needless quote of choice v


From: ELPA Syncer
Subject: [nongnu] elpa/clojure-mode d82417cf86: Remove needless quote of choice values
Date: Wed, 6 Jul 2022 07:58:15 -0400 (EDT)

branch: elpa/clojure-mode
commit d82417cf86644a4135c6d764aa901f69045fd5ca
Author: Shohei YOSHIDA <syohex@gmail.com>
Commit: Bozhidar Batsov <bozhidar@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."



reply via email to

[Prev in Thread] Current Thread [Next in Thread]