Allow only a colon as variable separator.
Tüm denetlemeler başarılı oldu
The build was successful.

Bu işleme şunda yer alıyor:
Rafal Kupiec 2018-10-27 19:49:24 +02:00
ebeveyn 6f13c347d8
işleme e5fb7d625e
İmzalayan: belliash
GPG Anahtar Kimliği: 4E829243E0CFE6B4

Dosyayı Görüntüle

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