all repos — hex @ 5c7892db74c2ac1683a868a531c053c4ec1916b8

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

Fixes.
h3rald h3rald@h3rald.com
Mon, 25 Nov 2024 15:21:36 +0000
commit

5c7892db74c2ac1683a868a531c053c4ec1916b8

parent

06f039a3452abe998cc1aea1151bfab3cc5ae3f0

2 files changed, 0 insertions(+), 10 deletions(-)

jump to
D .vscode/settings.json

@@ -1,8 +0,0 @@

-{ - "files.associations": { - "*.erd": "json", - "*.vuerd": "json", - "*.mjs": "javascript", - "string.h": "c" - } -}
M hex.chex.c

@@ -161,7 +161,6 @@ int (*functionPointer)();

struct HEX_StackElement **quotationValue; } data; HEX_Token *token; // Token containing stack information (valid for HEX_TYPE_NATIVE_SYMBOL and HEX_TYPE_USER_SYMBOL) - char *symbolName; // Symbol name (valid for HEX_TYPE_NATIVE_SYMBOL and HEX_TYPE_USER_SYMBOL) int quotationSize; // Size of the quotation (valid for HEX_TYPE_QUOTATION) } HEX_StackElement;

@@ -795,7 +794,6 @@ else

{ element->type = HEX_TYPE_USER_SYMBOL; } - element->symbolName = strdup(token->value); token->filename = strdup(filename); element->token = token; }