From e78cf96c971234ea25e35a9672ef00ea389d843f Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Fri, 24 Oct 1997 15:17:24 -0200 Subject: first version of Cclosures. --- ltable.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'ltable.c') diff --git a/ltable.c b/ltable.c index 71d49dcb..4ac0caab 100644 --- a/ltable.c +++ b/ltable.c @@ -1,5 +1,5 @@ /* -** $Id: ltable.c,v 1.3 1997/10/18 16:29:15 roberto Exp roberto $ +** $Id: ltable.c,v 1.4 1997/10/23 16:26:37 roberto Exp roberto $ ** Lua tables (hash) ** See Copyright Notice in lua.h */ @@ -41,9 +41,6 @@ static long int hashindex (TObject *ref) case LUA_T_FUNCTION: h = (IntPoint)clvalue(ref); break; - case LUA_T_CFUNCTION: - h = (IntPoint)fvalue(ref); - break; case LUA_T_ARRAY: h = (IntPoint)avalue(ref); break; -- cgit v1.2.3-55-g6feb