typo in comment + formatting + logical 'and' was written as a bitwise
operation (makes code more fragile)
This commit is contained in:
Roberto I 2025-12-23 14:44:06 -03:00
parent a5522f06d2
commit 578ae5745c
3 changed files with 3 additions and 3 deletions

2
lgc.c
View file

@ -1672,7 +1672,7 @@ static l_mem singlestep (lua_State *L, int fast) {
GCTM(L); /* call one finalizer */
stepresult = CWUFIN;
}
else { /* no more finalizers or emergency mode or no enough stack
else { /* no more finalizers or emergency mode or not enough stack
to run finalizers */
g->gcstate = GCSpause; /* finish collection */
stepresult = step2pause;