diff options
Diffstat (limited to 'src/lundump.c')
-rw-r--r-- | src/lundump.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lundump.c b/src/lundump.c index 244d6e52..e82e1951 100644 --- a/src/lundump.c +++ b/src/lundump.c @@ -1,5 +1,5 @@ /* -** $Id: lundump.c,v 2.12 2009/09/30 15:38:37 roberto Exp $ +** $Id: lundump.c,v 2.13 2010/03/12 19:14:06 roberto Exp $ ** load precompiled Lua chunks ** See Copyright Notice in lua.h */ @@ -180,7 +180,6 @@ static Proto* LoadFunction(LoadState* S, TString* p) f->numparams=LoadByte(S); f->is_vararg=LoadByte(S); f->maxstacksize=LoadByte(S); - f->envreg=LoadByte(S); LoadCode(S,f); LoadConstants(S,f); LoadUpvalues(S,f); |