Fixed issue #7

This commit is contained in:
GideonLeGrange 2014-04-24 14:51:58 +02:00
parent 160b7f5152
commit 6503eefa38
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 */ /** process 'name' tokens which could be key words or text */
private Token name() throws ScanException { private Token name() throws ScanException {
text = new StringBuilder(); text = new StringBuilder();
while (in(c,"[A-Za-z0-9-\\.\\*]")) { while (!in(c, "[ \t\r\n=]")) {
text.append(c); text.append(c);
nextChar(); nextChar();
} }