aboutsummaryrefslogtreecommitdiffstats
path: root/dictionary.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 /dictionary.cpp
parent9a58f8a55d29e4edda7d9352b292be42642b50eb (diff)
revise parsing for better compliance
Diffstat (limited to 'dictionary.cpp')
-rw-r--r--dictionary.cpp25
1 files changed, 15 insertions, 10 deletions
diff --git a/dictionary.cpp b/dictionary.cpp
index 27fcb47..ff80957 100644
--- a/dictionary.cpp
+++ b/dictionary.cpp
@@ -94,27 +94,32 @@ Addr Dictionary::getexec(Addr addr) noexcept
Word Dictionary::input() noexcept
{
- auto len = read(Dictionary::Input);
- if (len != 0) {
- Addr wordstart = Dictionary::Input + sizeof(Cell) + Dictionary::InputCells
- - len;
+ auto idx = read(Dictionary::Input);
+ auto ch = readbyte(Dictionary::Input + sizeof(Cell) + idx);
+
+ if (ch) {
+ Addr wordstart = Dictionary::Input + sizeof(Cell) + idx;
Addr wordend = wordstart;
- while (len) {
- auto b = readbyte(wordend);
+ do {
+ ch = readbyte(wordend);
- if (isspace(b)) {
+ if (isspace(ch) || ch == '\0') {
if (wordstart != wordend) {
- writebyte(Dictionary::Input, len - 1);
+ if (isspace(ch))
+ ++idx;
+ writebyte(Dictionary::Input, idx);
return {wordstart, wordend};
+ } else if (ch == '\0') {
+ return {};
}
++wordstart;
}
++wordend;
- --len;
- }
+ ++idx;
+ } while (ch);
}
return {};