Skip to content

Commit

Permalink
Use cl-every instead of seq-every-p (#605)
Browse files Browse the repository at this point in the history
This avoids the need to required seq.el.
  • Loading branch information
ROCKTAKEY authored Nov 14, 2021
1 parent 08d512a commit 08986ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clojure-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -1586,7 +1586,7 @@ https://docs.cider.mx/cider/indent_spec.html e.g. (2 :form
(not (null spec))
(or (integerp (car spec))
(memq (car spec) '(:form :defn)))
(seq-every-p 'clojure--valid-unquoted-indent-spec-p (cdr spec)))))
(cl-every 'clojure--valid-unquoted-indent-spec-p (cdr spec)))))

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

0 comments on commit 08986ac

Please sign in to comment.