diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/stack.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stack.nim b/src/stack.nim index 4565b5c..b100263 100644 --- a/src/stack.nim +++ b/src/stack.nim @@ -62,7 +62,7 @@ func Transfert*(toss: var Stack, soss: var Stack, n: int) = ## (aka begin) and '}' (aka end) stackstack commands toss.height += n if toss.height > toss.size: - toss.size += 32 + toss.size = toss.height toss.data.setlen(toss.size) for i in 1..min(soss.height, n): toss.data[toss.height-i] = soss.data[soss.height-i] |