report invalid characters

This commit is contained in:
David Rose 2004-10-14 04:59:33 +00:00
parent 3872ad229d
commit 2d4009bfa9

View File

@ -604,3 +604,8 @@ SEPARATOR [ \t;,]+
}
. {
// Any other character is invalid.
accept();
xyyerror("Invalid character '" + string(xyytext) + "'.");
}