aboutsummaryrefslogtreecommitdiffstats
path: root/main.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2024-12-19 17:04:19 -0500
committerClyne Sullivan <clyne@bitgloo.com>2024-12-19 17:04:19 -0500
commitb5ec68178067372c267831d64cf6e515435c9bef (patch)
tree287291d5efd08d22e315643a5e24114e745f0d65 /main.cpp
parentc229a831210c0b3c1fb24f9ccfd9e190f0f22a5e (diff)
fix case testing
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp7
1 files changed, 1 insertions, 6 deletions
diff --git a/main.cpp b/main.cpp
index be00744..83c3a81 100644
--- a/main.cpp
+++ b/main.cpp
@@ -67,12 +67,7 @@ bool parse_stream(auto &fth, std::istream& str, bool say_okay)
while (str.good()) {
std::getline(str, line);
if (!line.empty()) {
- for (auto& ch : line) {
- if (ch >= 'a' && ch <= 'z')
- ch = ch - 'a' + 'A';
- }
-
- if (line == "BYE")
+ if (sforth::isequal(line, "bye"))
return true;
try {