From 1c76451acc06a3ab39a35925e99e7ca44f8115fa Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Fri, 3 Mar 2023 12:44:10 -0500 Subject: revise parsing for better compliance --- parser.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'parser.cpp') diff --git a/parser.cpp b/parser.cpp index 9390a79..22c2cc3 100644 --- a/parser.cpp +++ b/parser.cpp @@ -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); } -- cgit v1.2.3