From d6fd33e76fdeb919fd91860aa9d0f9524e6d415a Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 30 Jan 2002 15:26:44 -0200 Subject: `eventtable' renamed to `metatable' --- ltable.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ltable.c') diff --git a/ltable.c b/ltable.c index 618e9d0b..13a9b544 100644 --- a/ltable.c +++ b/ltable.c @@ -273,7 +273,7 @@ static void rehash (lua_State *L, Table *t) { Table *luaH_new (lua_State *L, int narray, int lnhash) { Table *t = luaM_new(L, Table); - t->eventtable = hvalue(defaultet(L)); + t->metatable = hvalue(defaultmeta(L)); t->next = G(L)->roottable; G(L)->roottable = t; t->mark = t; -- cgit v1.2.3-55-g6feb