Highlight numbers in 'use' statements

Thanks, std::f64::consts...
This commit is contained in:
Ben S
2014-11-27 05:19:10 +00:00
parent c8ebb59385
commit af4c34887f

View File

@@ -161,7 +161,7 @@ SInt32 skipUse(BBLMTextIterator &iter)
while ((ch = iter.GetNextChar()))
{
if (islower(ch) || ch == ':' || ch == '_')
if (islower(ch) || ch == ':' || ch == '_' || (length > 0 && isdigit(ch)))
{
length++;
}