Fixed issue #7
This commit is contained in:
parent
160b7f5152
commit
6503eefa38
|
|
@ -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();
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue