aboutsummaryrefslogtreecommitdiff
path: root/ldo.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2010-03-26 17:58:11 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2010-03-26 17:58:11 -0300
commit064e406f67c0153999a5246deb1d616b06ee9bb0 (patch)
treef4483ab6ad6d55484829a0d8a27b8afa1768a36e /ldo.c
parent5c87f61e6b1567400d2bd8f452939bb948f16dda (diff)
downloadlua-064e406f67c0153999a5246deb1d616b06ee9bb0.tar.gz
lua-064e406f67c0153999a5246deb1d616b06ee9bb0.tar.bz2
lua-064e406f67c0153999a5246deb1d616b06ee9bb0.zip
no more fenvs!
Diffstat (limited to 'ldo.c')
-rw-r--r--ldo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ldo.c b/ldo.c
index 0d540228..d00ed860 100644
--- a/ldo.c
+++ b/ldo.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ldo.c,v 2.80 2010/01/13 16:17:32 roberto Exp roberto $ 2** $Id: ldo.c,v 2.81 2010/02/09 11:56:29 roberto Exp roberto $
3** Stack and Call structure of Lua 3** Stack and Call structure of Lua
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -622,7 +622,7 @@ static void f_parser (lua_State *L, void *ud) {
622 : luaY_parser(L, p->z, &p->buff, &p->varl, p->name); 622 : luaY_parser(L, p->z, &p->buff, &p->varl, p->name);
623 setptvalue2s(L, L->top, tf); 623 setptvalue2s(L, L->top, tf);
624 incr_top(L); 624 incr_top(L);
625 cl = luaF_newLclosure(L, tf->sizeupvalues, G(L)->l_gt); 625 cl = luaF_newLclosure(L, tf->sizeupvalues);
626 cl->l.p = tf; 626 cl->l.p = tf;
627 setclvalue(L, L->top - 1, cl); 627 setclvalue(L, L->top - 1, cl);
628 for (i = 0; i < tf->sizeupvalues; i++) /* initialize upvalues */ 628 for (i = 0; i < tf->sizeupvalues; i++) /* initialize upvalues */