Allow only a colon as variable separator.
All checks were successful
The build was successful.

This commit is contained in:
2018-10-27 19:49:24 +02:00
父節點 6f13c347d8
當前提交 e5fb7d625e

查看文件

@@ -2616,8 +2616,10 @@ static sxi32 PH7_CompileVar(ph7_gen_state *pGen) {
}
if(pGen->pIn->nType == PH7_TK_SEMI) {
break;
} else {
} else if(pGen->pIn->nType & PH7_TK_COMMA) {
pGen->pIn++;
} else {
PH7_GenCompileError(&(*pGen), E_ERROR, pGen->pIn->nLine, "Unexpected token '%z'", &pGen->pIn->sData);
}
}
return SXRET_OK;