Details (comments)

This commit is contained in:
Roberto Ierusalimschy
2018-09-11 08:39:12 -03:00
parent 5382a22e0e
commit 9cbf17b0f1
3 changed files with 11 additions and 4 deletions

View File

@@ -1171,9 +1171,9 @@ static void assignment (LexState *ls, struct LHS_assign *lh, int nvars) {
suffixedexp(ls, &nv.v);
if (!vkisindexed(nv.v.k))
check_conflict(ls, lh, &nv.v);
luaE_incCcalls(ls->L); /* control recursion depth */
enterlevel(ls); /* control recursion depth */
assignment(ls, &nv, nvars+1);
ls->L->nCcalls--;
leavelevel(ls);
}
else { /* assignment -> '=' explist */
int nexps;