From 625230ba051c8d8a14d48bd431750df399c0fd2e Mon Sep 17 00:00:00 2001 From: Eero Helenius Date: Mon, 19 Feb 2024 14:03:46 +0200 Subject: [PATCH] Ignore gensym more aggressively --- clojure/src/tutkain/analyzer.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clojure/src/tutkain/analyzer.clj b/clojure/src/tutkain/analyzer.clj index cf892636..3b2da7d4 100644 --- a/clojure/src/tutkain/analyzer.clj +++ b/clojure/src/tutkain/analyzer.clj @@ -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))