Commit 9d6ec5a2 authored by Dick Hollenbeck's avatar Dick Hollenbeck

dsnlexer.cpp's isNumber() was recently stupid-ized, un-stupid-ize it.

parent caf5fc8d
......@@ -480,7 +480,7 @@ static bool isNumber( const char* cp, const char* limit )
}
}
return sawNumber;
return sawNumber && cp==limit;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment