aboutsummaryrefslogtreecommitdiff
path: root/src/3rdParty/lua/llimits.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/3rdParty/lua/llimits.h')
-rw-r--r--src/3rdParty/lua/llimits.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/3rdParty/lua/llimits.h b/src/3rdParty/lua/llimits.h
index 6c56ba5..52a32f9 100644
--- a/src/3rdParty/lua/llimits.h
+++ b/src/3rdParty/lua/llimits.h
@@ -361,7 +361,7 @@ typedef l_uint32 Instruction;
361#define condchangemem(L,pre,pos) ((void)0) 361#define condchangemem(L,pre,pos) ((void)0)
362#else 362#else
363#define condchangemem(L,pre,pos) \ 363#define condchangemem(L,pre,pos) \
364 { if (G(L)->gcrunning) { pre; luaC_fullgc(L, 0); pos; } } 364 { if (gcrunning(G(L))) { pre; luaC_fullgc(L, 0); pos; } }
365#endif 365#endif
366 366
367#endif 367#endif