From 25c557ec6367870c127e879cce8ed8fa21f34398 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Fri, 12 Mar 2010 16:14:06 -0300 Subject: first version of _ENV; no more global variables --- lfunc.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'lfunc.c') diff --git a/lfunc.c b/lfunc.c index d0be5e6b..f4e30faa 100644 --- a/lfunc.c +++ b/lfunc.c @@ -1,5 +1,5 @@ /* -** $Id: lfunc.c,v 2.18 2009/12/11 13:39:34 roberto Exp roberto $ +** $Id: lfunc.c,v 2.19 2009/12/16 16:42:58 roberto Exp roberto $ ** Auxiliary functions to manipulate prototypes and closures ** See Copyright Notice in lua.h */ @@ -127,7 +127,6 @@ Proto *luaF_newproto (lua_State *L) { f->linedefined = 0; f->lastlinedefined = 0; f->source = NULL; - f->envreg = NO_REG; return f; } -- cgit v1.2.3-55-g6feb