aboutsummaryrefslogtreecommitdiff
path: root/ltm.c
diff options
context:
space:
mode:
Diffstat (limited to 'ltm.c')
-rw-r--r--ltm.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ltm.c b/ltm.c
index 410d23c0..a173879e 100644
--- a/ltm.c
+++ b/ltm.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltm.c,v 1.39 2000/03/30 16:41:51 roberto Exp roberto $ 2** $Id: ltm.c,v 1.40 2000/05/24 13:54:49 roberto Exp roberto $
3** Tag methods 3** Tag methods
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -61,6 +61,7 @@ static void init_entry (lua_State *L, int tag) {
61 int i; 61 int i;
62 for (i=0; i<IM_N; i++) 62 for (i=0; i<IM_N; i++)
63 ttype(luaT_getim(L, tag, i)) = TAG_NIL; 63 ttype(luaT_getim(L, tag, i)) = TAG_NIL;
64 L->IMtable[tag].collected = NULL;
64} 65}
65 66
66 67