Removed unnecessary symbols.
h3rald h3rald@h3rald.com
Thu, 25 Jun 2026 11:07:04 +0200
3 files changed,
2 insertions(+),
4 deletions(-)
M
src/hex.h
→
src/hex.h
@@ -350,7 +350,6 @@ int hex_symbol_or(hex_context_t *ctx);
int hex_symbol_not(hex_context_t *ctx); int hex_symbol_xor(hex_context_t *ctx); int hex_symbol_cat(hex_context_t *ctx); -int hex_symbol_slice(hex_context_t *ctx); int hex_symbol_len(hex_context_t *ctx); int hex_symbol_get(hex_context_t *ctx); int hex_symbol_index(hex_context_t *ctx);@@ -365,7 +364,6 @@ int hex_symbol_exit(hex_context_t *ctx);
int hex_symbol_exec(hex_context_t *ctx); int hex_symbol_run(hex_context_t *ctx); int hex_symbol_if(hex_context_t *ctx); -int hex_symbol_when(hex_context_t *ctx); int hex_symbol_while(hex_context_t *ctx); int hex_symbol_error(hex_context_t *ctx); int hex_symbol_try(hex_context_t *ctx);
M
src/symbols.c
→
src/symbols.c
@@ -1443,7 +1443,7 @@ {
hex_error(ctx, "[symbol len] Quotation or string required"); result = 1; } - HEX_FREE(ctx, item); + HEX_FREE(ctx, item); return result; }