Removing deepCopy from dequote (not really necessary).
h3rald h3rald@h3rald.com
Wed, 03 Jun 2026 09:56:54 +0200
1 files changed,
0 insertions(+),
2 deletions(-)
jump to
M
minpkg/core/interpreter.nim
→
minpkg/core/interpreter.nim
@@ -222,10 +222,8 @@
proc dequote*(i: In, q: var MinValue) = if q.kind == minQuotation: i.withScope(): - let qqval = deepCopy(q.qVal) for v in q.qVal: i.push v - q.qVal = qqval else: i.push(q)