Fixes.
h3rald h3rald@h3rald.com
Mon, 25 Nov 2024 15:21:36 +0000
2 files changed,
0 insertions(+),
10 deletions(-)
D
.vscode/settings.json
@@ -1,8 +0,0 @@
-{ - "files.associations": { - "*.erd": "json", - "*.vuerd": "json", - "*.mjs": "javascript", - "string.h": "c" - } -}
M
hex.c
→
hex.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; }