Added forgotten case in lexer.

This commit is contained in:
Jakob Fries 2008-02-11 21:41:31 +00:00
parent 5d02a7f4fa
commit 5840e987b1

View file

@ -198,6 +198,7 @@ static int lex(const char *line, LEXER_RESULT *res)
case STATE_STRING: case STATE_STRING:
case STATE_QUOTED: case STATE_QUOTED:
case STATE_POT_FLOAT: case STATE_POT_FLOAT:
case STATE_POT_NEGATIVE:
save_token(res, &i, &start, c, &state, TOKEN_STRING); save_token(res, &i, &start, c, &state, TOKEN_STRING);
break; break;
case STATE_ESCAPE: case STATE_ESCAPE: