Correct the keywordDict size

The stale keywords XDEF and GLOBAL were removed,
so there can be fewer keyword nodes.
This commit is contained in:
Rangi
2021-02-12 15:24:26 -05:00
committed by Eldred Habert
parent ebb5aab6db
commit 8415ce3ed0

View File

@@ -496,7 +496,7 @@ struct KeywordDictNode {
uint16_t children[0x60 - ' '];
struct KeywordMapping const *keyword;
/* Since the keyword structure is invariant, the min number of nodes is known at compile time */
} keywordDict[359] = {0}; /* Make sure to keep this correct when adding keywords! */
} keywordDict[350] = {0}; /* Make sure to keep this correct when adding keywords! */
/* Convert a char into its index into the dict */
static inline uint8_t dictIndex(char c)