diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-03-03 12:44:10 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-03-03 12:44:10 -0500 |
commit | 1c76451acc06a3ab39a35925e99e7ca44f8115fa (patch) | |
tree | 3fc85374fdd933c3aa00226da534ab6658c7f5c7 /parser.cpp | |
parent | 9a58f8a55d29e4edda7d9352b292be42642b50eb (diff) |
revise parsing for better compliance
Diffstat (limited to 'parser.cpp')
-rw-r--r-- | parser.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -24,15 +24,15 @@ int Parser::parse(State& state, const char *str) { - const auto size = std::strlen(str); - auto addr = Dictionary::Input; - state.dict.write(addr, size + 1); + state.dict.write(addr, 0); - addr += sizeof(Cell) + Dictionary::InputCells - size - 1; + addr += sizeof(Cell); while (*str) state.dict.writebyte(addr++, *str++); - state.dict.writebyte(addr, ' '); + + while (addr < Dictionary::Input + Dictionary::InputCells) + state.dict.writebyte(addr++, '\0'); return parseSource(state); } |