aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ldo.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/ldo.c b/ldo.c
index ee9dd249..e6eba7d1 100644
--- a/ldo.c
+++ b/ldo.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ldo.c,v 1.177 2002/05/27 20:35:40 roberto Exp roberto $ 2** $Id: ldo.c,v 1.178 2002/06/03 17:46:34 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*/
@@ -432,10 +432,8 @@ int luaD_protectedparser (lua_State *L, ZIO *z, int bin) {
432 lua_assert(G(L)->nblocks >= old_blocks); 432 lua_assert(G(L)->nblocks >= old_blocks);
433 G(L)->GCthreshold += (G(L)->nblocks - old_blocks); 433 G(L)->GCthreshold += (G(L)->nblocks - old_blocks);
434 } 434 }
435 else { 435 else
436 setobj(L->top++, &p.err); 436 setobj(L->top++, &p.err);
437 lua_assert(status != LUA_ERRRUN);
438 }
439 return status; 437 return status;
440} 438}
441 439