all repos — hex @ 310b789d82a16bbff84f86debf8636efd3ad3d06

A tiny, minimalist, slightly-esoteric concatenative programming lannguage.

Disabling cleanup stack for now.
Fabio Cevasco h3rald@h3rald.com
Wed, 01 Jan 2025 16:08:43 +0100
commit

310b789d82a16bbff84f86debf8636efd3ad3d06

parent

adcfba3e3932d3d5053c8e4a8b9a1c28085d6ae9

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M src/stack.csrc/stack.c

@@ -221,7 +221,7 @@ }

*item = *ctx->stack->entries[ctx->stack->top]; hex_debug_item(ctx, " POP", item); ctx->stack->top--; - hex_cleanup_push(ctx, item); + //hex_cleanup_push(ctx, item); return item; }