diff options
Diffstat (limited to 'dictionary.cpp')
-rw-r--r-- | dictionary.cpp | 50 |
1 files changed, 26 insertions, 24 deletions
diff --git a/dictionary.cpp b/dictionary.cpp index 6432607..48230c4 100644 --- a/dictionary.cpp +++ b/dictionary.cpp @@ -95,33 +95,35 @@ Addr Dictionary::getexec(Addr addr) noexcept Word Dictionary::input() noexcept { - auto idx = read(Dictionary::Input); auto src = read(Dictionary::Source); - auto ch = readbyte(src + idx); - - if (ch) { - Addr wordstart = src + idx; - Addr wordend = wordstart; - - do { - ch = readbyte(wordend); - - if (isspace(ch) || ch == '\0') { - if (wordstart != wordend) { - if (isspace(ch)) - ++idx; - writebyte(Dictionary::Input, idx); - return {wordstart, wordend}; - } else if (ch == '\0') { - return {}; - } - - ++wordstart; + auto end = read(Dictionary::SourceLen); + auto idx = read(Dictionary::Input); + + Addr wordstart = src + idx; + Addr wordend = wordstart; + + while (idx < end) { + auto ch = readbyte(wordend); + + if (ch == '\0') + break; + + if (isspace(ch)) { + if (wordstart != wordend) { + writebyte(Dictionary::Input, idx + 1); + return {wordstart, wordend}; } - ++wordend; - ++idx; - } while (ch); + ++wordstart; + } + + ++wordend; + ++idx; + } + + if (wordstart != wordend) { + writebyte(Dictionary::Input, idx + 1); + return {wordstart, wordend}; } return {}; |