commit 86ec152433baf8daf39f03a59c6842cbe33a179d
parent cf613cdc6fa367257fc61c256f63d917350858b5
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date: Tue, 21 Dec 2021 07:38:58 -0300
Details
correction in macro for hard tests + type in comment
Diffstat:
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/lapi.c b/lapi.c
@@ -1143,7 +1143,7 @@ LUA_API int lua_gc (lua_State *L, int what, ...) {
va_start(argp, what);
switch (what) {
case LUA_GCSTOP: {
- g->gcstp = GCSTPUSR; /* stopeed by the user */
+ g->gcstp = GCSTPUSR; /* stopped by the user */
break;
}
case LUA_GCRESTART: {
diff --git a/llimits.h b/llimits.h
@@ -361,7 +361,7 @@ typedef l_uint32 Instruction;
#define condchangemem(L,pre,pos) ((void)0)
#else
#define condchangemem(L,pre,pos) \
- { if (G(L)->gcrunning) { pre; luaC_fullgc(L, 0); pos; } }
+ { if (gcrunning(G(L))) { pre; luaC_fullgc(L, 0); pos; } }
#endif
#endif