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 --- lundump.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'lundump.c') diff --git a/lundump.c b/lundump.c index be77d98e..7194d82a 100644 --- a/lundump.c +++ b/lundump.c @@ -1,5 +1,5 @@ /* -** $Id: lundump.c,v 2.23 2013/04/26 18:48:35 roberto Exp roberto $ +** $Id: lundump.c,v 2.24 2013/08/16 18:55:49 roberto Exp roberto $ ** load precompiled Lua chunks ** See Copyright Notice in lua.h */ @@ -88,7 +88,6 @@ static TString* LoadString(LoadState* S) char* s=luaZ_openspace(S->L,S->b,size); LoadBlock(S,s,size*sizeof(char)); ts = luaS_newlstr(S->L,s,size-1); /* remove trailing '\0' */ - nolocal(obj2gco(ts)); /* all strings here anchored in non-thread objects */ return ts; } } -- cgit v1.2.3-55-g6feb