aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2005-09-30 11:21:56 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2005-09-30 11:21:56 -0300
commitede19c91385e9d30080048e744cf2a363eae968c (patch)
treefefb2dbec2ed04808cc031e2a463f0384a44c214
parent9e88b336b452e463945893f2f1ad4fae2352aa30 (diff)
downloadlua-ede19c91385e9d30080048e744cf2a363eae968c.tar.gz
lua-ede19c91385e9d30080048e744cf2a363eae968c.tar.bz2
lua-ede19c91385e9d30080048e744cf2a363eae968c.zip
-rw-r--r--lparser.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lparser.c b/lparser.c
index 15a906c1..24c8e69e 100644
--- a/lparser.c
+++ b/lparser.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lparser.c,v 2.34 2005/08/24 17:41:10 roberto Exp $ 2** $Id: lparser.c,v 2.35 2005/08/29 20:49:21 roberto Exp roberto $
3** Lua Parser 3** Lua Parser
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -351,7 +351,7 @@ static void open_func (LexState *ls, FuncState *fs) {
351 fs->L = L; 351 fs->L = L;
352 ls->fs = fs; 352 ls->fs = fs;
353 fs->pc = 0; 353 fs->pc = 0;
354 fs->lasttarget = 0; 354 fs->lasttarget = -1;
355 fs->jpc = NO_JUMP; 355 fs->jpc = NO_JUMP;
356 fs->freereg = 0; 356 fs->freereg = 0;
357 fs->nk = 0; 357 fs->nk = 0;