From 733c58595bb57541e38275103fade1330aeb839d Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 13 Feb 2014 10:11:34 -0200 Subject: no more local collection --- lfunc.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'lfunc.c') diff --git a/lfunc.c b/lfunc.c index 3727b6cf..3381e437 100644 --- a/lfunc.c +++ b/lfunc.c @@ -1,5 +1,5 @@ /* -** $Id: lfunc.c,v 2.37 2013/08/27 20:04:00 roberto Exp roberto $ +** $Id: lfunc.c,v 2.38 2013/09/11 12:26:14 roberto Exp roberto $ ** Auxiliary functions to manipulate prototypes and closures ** See Copyright Notice in lua.h */ @@ -86,7 +86,6 @@ void luaF_close (lua_State *L, StkId level) { Proto *luaF_newproto (lua_State *L) { Proto *f = &luaC_newobj(L, LUA_TPROTO, sizeof(Proto))->p; - nolocal(obj2gco(f)); /* prototypes are never local */ f->k = NULL; f->sizek = 0; f->p = NULL; -- cgit v1.2.3-55-g6feb