aboutsummaryrefslogtreecommitdiffstats
path: root/parser.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2023-03-03 12:44:10 -0500
committerClyne Sullivan <clyne@bitgloo.com>2023-03-03 12:44:10 -0500
commit1c76451acc06a3ab39a35925e99e7ca44f8115fa (patch)
tree3fc85374fdd933c3aa00226da534ab6658c7f5c7 /parser.cpp
parent9a58f8a55d29e4edda7d9352b292be42642b50eb (diff)
revise parsing for better compliance
Diffstat (limited to 'parser.cpp')
-rw-r--r--parser.cpp10
1 files changed, 5 insertions, 5 deletions
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);
}