aboutsummaryrefslogtreecommitdiff
path: root/ltable.c
diff options
context:
space:
mode:
Diffstat (limited to 'ltable.c')
-rw-r--r--ltable.c2
1 files changed, 1 insertions, 1 deletions
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) {
273 273
274Table *luaH_new (lua_State *L, int narray, int lnhash) { 274Table *luaH_new (lua_State *L, int narray, int lnhash) {
275 Table *t = luaM_new(L, Table); 275 Table *t = luaM_new(L, Table);
276 t->eventtable = hvalue(defaultet(L)); 276 t->metatable = hvalue(defaultmeta(L));
277 t->next = G(L)->roottable; 277 t->next = G(L)->roottable;
278 G(L)->roottable = t; 278 G(L)->roottable = t;
279 t->mark = t; 279 t->mark = t;