New year (2024->2025), typos in comments
This commit is contained in:
Roberto Ierusalimschy
2025-01-16 11:51:16 -03:00
parent 3cdd49c94a
commit 2d8d5c74b5
15 changed files with 24 additions and 25 deletions

View File

@@ -898,7 +898,7 @@ int luaG_tracecall (lua_State *L) {
if (ci->u.l.savedpc == p->code) { /* first instruction (not resuming)? */
if (p->flag & PF_ISVARARG)
return 0; /* hooks will start at VARARGPREP instruction */
else if (!(ci->callstatus & CIST_HOOKYIELD)) /* not yieded? */
else if (!(ci->callstatus & CIST_HOOKYIELD)) /* not yielded? */
luaD_hookcall(L, ci); /* check 'call' hook */
}
return 1; /* keep 'trap' on */