aboutsummaryrefslogtreecommitdiffstats
path: root/libalee/parser.cpp
diff options
context:
space:
mode:
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;
}