From e506b864cdc522ed7bf33e81d785fcfbd40a0368 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 1 Feb 2001 15:40:48 -0200 Subject: no need for tags in boxed values :-( --- ltable.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'ltable.c') diff --git a/ltable.c b/ltable.c index 01b082e3..1e524f5f 100644 --- a/ltable.c +++ b/ltable.c @@ -1,5 +1,5 @@ /* -** $Id: ltable.c,v 1.73 2001/01/29 19:34:02 roberto Exp roberto $ +** $Id: ltable.c,v 1.74 2001/01/30 19:48:37 roberto Exp roberto $ ** Lua tables (hash) ** See Copyright Notice in lua.h */ @@ -98,7 +98,6 @@ static void setnodevector (lua_State *L, Hash *t, luint32 size) { Hash *luaH_new (lua_State *L, int size) { Hash *t = luaM_new(L, Hash); - t->v.ttype = LUA_TTABLE; t->htag = TagDefault; t->next = G(L)->roottable; G(L)->roottable = t; -- cgit v1.2.3-55-g6feb