diff options
Diffstat (limited to 'ldo.c')
-rw-r--r-- | ldo.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ldo.c,v 1.1 1997/09/16 19:25:59 roberto Exp roberto $ | 2 | ** $Id: ldo.c,v 1.2 1997/09/26 15:02:26 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 | */ |
@@ -338,7 +338,7 @@ static int protectedparser (ZIO *z, char *chunkname, int bin) | |||
338 | luaD_adjusttop(luaD_Cstack.base+1); /* one slot for the pseudo-function */ | 338 | luaD_adjusttop(luaD_Cstack.base+1); /* one slot for the pseudo-function */ |
339 | luaD_stack.stack[luaD_Cstack.base].ttype = LUA_T_PROTO; | 339 | luaD_stack.stack[luaD_Cstack.base].ttype = LUA_T_PROTO; |
340 | luaD_stack.stack[luaD_Cstack.base].value.tf = tf; | 340 | luaD_stack.stack[luaD_Cstack.base].value.tf = tf; |
341 | luaV_closure(); | 341 | luaV_closure(0); |
342 | return 0; | 342 | return 0; |
343 | } | 343 | } |
344 | 344 | ||