Fixed scanner bug causing .id=*nn values not to be scanned correctly.

This commit is contained in:
Gideon le Grange 2014-04-21 20:36:59 +02:00
parent bd08b964ee
commit 16eb6cb17e
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ class Scanner {
/** process 'name' tokens which could be key words or text */
private Token name() throws ScanException {
text = new StringBuilder();
while (in(c,"[A-Za-z0-9-\\.]")) {
while (in(c,"[A-Za-z0-9-\\.\\*]")) {
text.append(c);
nextChar();
}