__emit: Fix previously undetected error case related to invalid use of the '-' sign

This commit is contained in:
Daniel_Cortez 2019-04-03 21:12:08 +07:00
parent 40dace770f
commit 3c370ffde2

View File

@ -6135,6 +6135,8 @@ fetchtok:
} /* if */
break;
case ':':
if (negate)
goto invalid_token_neg;
tok=lex(&val,&str);
if (tok!=tSYMBOL) {
emit_invalid_token(tSYMBOL,tok);