Przeglądaj źródła

Details

correction in macro for hard tests + type in comment
Roberto Ierusalimschy 3 lat temu
rodzic
commit
86ec152433
2 zmienionych plików z 2 dodań i 2 usunięć
  1. 1 1
      lapi.c
  2. 1 1
      llimits.h

+ 1 - 1
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: {

+ 1 - 1
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