Allow - to trigger the number check.

This commit is contained in:
Brad Arant 2025-11-25 15:28:31 -08:00
parent 72c1286053
commit 11d6f00bfb

View File

@ -373,6 +373,8 @@ namespace coreutils {
}
bool ZString::startsWithNumber() {
if(*cursor == '-')
return true;
return ((*cursor >= '0') && (*cursor <= '9'));
}