File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # 1.5.1 - Jun 4, 2025
2+
3+ ` clojure+.hashp ` :
4+
5+ - fix error printing dynamic fn invocations
6+
17# 1.5.0 - May 10, 2025
28
39` clojure+.core.server ` :
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ An ongoing project to improve experience of using Clojure stdlib.
99Add this to deps.edn:
1010
1111``` clojure
12- io.github.tonsky/clojure-plus {:mvn/version " 1.5.0 " }
12+ io.github.tonsky/clojure-plus {:mvn/version " 1.5.1 " }
1313```
1414
1515## Overview
Original file line number Diff line number Diff line change 117117 true
118118
119119 :else
120- (let [sym (first form)
121- arity (dec (count form))]
122- (arity-ok? (arglists sym) arity))))
120+ (let [sym (first form)
121+ arity (dec (count form))
122+ arglists (arglists sym)]
123+ (if arglists
124+ (arity-ok? arglists arity)
125+ true ))))
123126
124127(defn- add-first [x form]
125128 (if (seq? form)
You can’t perform that action at this time.
0 commit comments