Skip to content

Commit

Permalink
Ignore gensym more aggressively
Browse files Browse the repository at this point in the history
  • Loading branch information
eerohele committed Feb 19, 2024
1 parent 9d1dde0 commit 625230b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clojure/src/tutkain/analyzer.clj
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
;; Remove gensym params (e.g. p__11784).
;;
;;TODO: Is this the right way to do this?
(remove (fn [form] (re-matches #"\P{N}.*__\p{N}+" (name form))))
(remove (fn [form] (re-matches #"\P{N}.*__\p{N}+.*" (name form))))
(distinct)
nodes))

Expand Down

0 comments on commit 625230b

Please sign in to comment.