File tree Expand file tree Collapse file tree 3 files changed +12
-10
lines changed Expand file tree Collapse file tree 3 files changed +12
-10
lines changed Original file line number Diff line number Diff line change 36
36
{; ; for disabling the official compiler
37
37
:classpath-overrides {org.clojure/clojure nil }
38
38
:extra-deps {com.github.flow-storm/clojure {:mvn/version " 1.12.0-3" }
39
- com.github.flow-storm/flow-storm-dbg {:mvn/version " 4.1.1 " }}
39
+ com.github.flow-storm/flow-storm-dbg {:mvn/version " 4.1.2 " }}
40
40
:jvm-opts [" -Dclojure.storm.instrumentEnable=true" ]}
41
41
42
42
:nrepl/jvm
156
156
; ;
157
157
; ; Deployment
158
158
; ;
159
- :build {:deps {io.github.clojure/tools.build {:mvn/version " 0.10.6 " }}
159
+ :build {:deps {io.github.clojure/tools.build {:mvn/version " 0.10.7 " }}
160
160
:extra-paths [" src" " build" ]
161
161
:ns-default build}
162
162
Original file line number Diff line number Diff line change 412
412
:show-deps-fn cli-deps-tree
413
413
:test-cmds [" clojure -M:test" ]}
414
414
{:name " rewrite-edn"
415
- ; ; very temporarily use sha of my PR that addresses failure
416
- ; ; move back to release when PR is merged
417
- :version " 5659a1f650514d18c2356edeca16662e860ddd92"
415
+ :version " 0.4.9"
418
416
:platforms [:clj ]
419
417
:github-release {:repo " borkdude/rewrite-edn"
420
- ; ; very temporarily use sha of PR that addresses failure
421
- ; ; :version-prefix "v"
422
- ; ; :via :tag
423
- :via :sha }
418
+ :version-prefix " v"
419
+ :via :tag }
424
420
:patch-fn deps-edn-v1-patch
425
421
:show-deps-fn cli-deps-tree
426
422
:test-cmds [" clojure -M:test" ]}
Original file line number Diff line number Diff line change 52
52
rows 0 ]
53
53
(if (not zloc)
54
54
(inc rows)
55
- (if (or (z/linebreak? zloc) (n/comment? (z/node zloc)))
55
+ (cond
56
+ (z/linebreak? zloc)
57
+ (recur (z/prev* zloc) (long (+ rows (z/length zloc))))
58
+
59
+ (n/comment? (z/node zloc))
56
60
(recur (z/prev* zloc) (inc rows))
61
+
62
+ :else
57
63
(recur (z/prev* zloc) rows)))))
58
64
59
65
(defn- col-num [zloc]
You can’t perform that action at this time.
0 commit comments