aboutsummaryrefslogtreecommitdiffstats
path: root/libalee/parser.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2023-03-11 16:24:25 -0500
committerClyne Sullivan <clyne@bitgloo.com>2023-03-11 16:24:25 -0500
commitbf7fe756a175a90dd82e970e5d620c6d8c459c17 (patch)
tree82dab52271f35db08177410ab1ef94cfe1d66be7 /libalee/parser.cpp
parentf186ff2a22459ebf2fd83b63b66370d018dcbbef (diff)
u. um*
Diffstat (limited to 'libalee/parser.cpp')
-rw-r--r--libalee/parser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libalee/parser.cpp b/libalee/parser.cpp
index 9981b3e..464bc2f 100644
--- a/libalee/parser.cpp
+++ b/libalee/parser.cpp
@@ -95,7 +95,7 @@ Error Parser::parseNumber(State& state, Word word)
result += c - '0';
} else if (isalpha(c) && base > 10) {
result *= base;
- result += 10 + (c > 'a' ? c - 'a' : c - 'A');
+ result += 10 + c - (isupper(c) ? 'A' : 'a');
} else {
return Error::noword;
}