all repos — hex @ 62f3370435f3f45ba3633ca2b84d441374050be6

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

Fixes.
h3rald h3rald@h3rald.com
Mon, 09 Dec 2024 10:41:28 +0100
commit

62f3370435f3f45ba3633ca2b84d441374050be6

parent

14b27e19ad074989551b6027f87b0cf64384c161

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

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

@@ -1962,7 +1962,8 @@ FREE(ctx, a);

FREE(ctx, b); return 1; } - hex_push_integer(ctx, !result) || hex_equal(a, b); + result = !result || hex_equal(a, b); + hex_push_integer(ctx, result); return 0; }