Skip to content

Commit 08986ac

Browse files
authored
Use cl-every instead of seq-every-p (#605)
This avoids the need to required seq.el.
1 parent 08d512a commit 08986ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clojure-mode.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1586,7 +1586,7 @@ https://docs.cider.mx/cider/indent_spec.html e.g. (2 :form
15861586
(not (null spec))
15871587
(or (integerp (car spec))
15881588
(memq (car spec) '(:form :defn)))
1589-
(seq-every-p 'clojure--valid-unquoted-indent-spec-p (cdr spec)))))
1589+
(cl-every 'clojure--valid-unquoted-indent-spec-p (cdr spec)))))
15901590

15911591
(defun clojure--valid-indent-spec-p (spec)
15921592
"Check that the indentation SPEC (quoted if a list) is valid.

0 commit comments

Comments
 (0)