diff options
Diffstat (limited to 'lgc.c')
-rw-r--r-- | lgc.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lgc.c,v 1.84 2001/02/01 17:40:48 roberto Exp roberto $ | 2 | ** $Id: lgc.c,v 1.85 2001/02/02 15:13:05 roberto Exp roberto $ |
3 | ** Garbage Collector | 3 | ** Garbage Collector |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -375,7 +375,7 @@ void luaC_collect (lua_State *L, int all) { | |||
375 | } | 375 | } |
376 | 376 | ||
377 | 377 | ||
378 | static void luaC_collectgarbage (lua_State *L) { | 378 | void luaC_collectgarbage (lua_State *L) { |
379 | markall(L); | 379 | markall(L); |
380 | invalidaterefs(G(L)); /* check unlocked references */ | 380 | invalidaterefs(G(L)); /* check unlocked references */ |
381 | luaC_collect(L, 0); | 381 | luaC_collect(L, 0); |