@@ -1700,6 +1700,15 @@ accepted by `clojure-indent-style'."
1700
1700
; ; Car of form is not a symbol.
1701
1701
(not (looking-at " .\\ (?:\\ sw\\ |\\ s_\\ )" ))))
1702
1702
1703
+ (defcustom clojure-enable-indent-specs t
1704
+ " Control whether to honor indent specs.
1705
+ They can be either set via metadata on the function/macro, or via
1706
+ `define-clojure-indent' . Set this to nil to get uniform
1707
+ formatting of all forms."
1708
+ :type 'boolean
1709
+ :safe #'booleanp
1710
+ :package-version '(clojure-mode . " 5.19.0" ))
1711
+
1703
1712
; ; Check the general context, and provide indentation for data structures and
1704
1713
; ; special macros. If current form is a function (or non-special macro),
1705
1714
; ; delegate indentation to `clojure--normal-indent' .
@@ -1850,15 +1859,6 @@ Requires the macro's NAME and a VALUE."
1850
1859
(put-clojure-indent x 'defun ))
1851
1860
value))
1852
1861
1853
- (defcustom clojure-enable-indent-specs t
1854
- " Control whether to honor indent specs.
1855
- They can be either set via metadata on the function/macro, or via
1856
- `define-clojure-indent' . Set this to nil to get uniform
1857
- formatting of all forms."
1858
- :type 'boolean
1859
- :safe #'booleanp
1860
- :package-version '(clojure-mode . " 5.19.0" ))
1861
-
1862
1862
(defcustom clojure-defun-indents nil
1863
1863
" List of additional symbols with defun-style indentation in Clojure.
1864
1864
0 commit comments