From 1444d28476af70bc51c4fdba71deb669f41c77a3 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 19 Mar 1997 16:41:10 -0300 Subject: first full implementation of internal methods --- table.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'table.c') diff --git a/table.c b/table.c index a7b895d4..e545195f 100644 --- a/table.c +++ b/table.c @@ -3,7 +3,7 @@ ** Module to control static tables */ -char *rcs_table="$Id: table.c,v 2.59 1997/02/26 17:38:41 roberto Unstable roberto $"; +char *rcs_table="$Id: table.c,v 2.60 1997/03/11 18:44:28 roberto Exp roberto $"; #include "mem.h" #include "opcode.h" @@ -168,6 +168,8 @@ Long luaI_collectgarbage (void) lua_travsymbol(lua_markobject); /* mark symbol table objects */ luaI_travlock(lua_markobject); /* mark locked objects */ luaI_travfallbacks(lua_markobject); /* mark fallbacks */ + luaI_hashcallIM(); + luaI_strcallIM(); luaI_invalidaterefs(); recovered += lua_strcollector(); recovered += lua_hashcollector(); -- cgit v1.2.3-55-g6feb