aboutsummaryrefslogtreecommitdiff
path: root/ldo.c
diff options
context:
space:
mode:
Diffstat (limited to 'ldo.c')
-rw-r--r--ldo.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ldo.c b/ldo.c
index 36e8af18..3cecc85b 100644
--- a/ldo.c
+++ b/ldo.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ldo.c,v 2.33 2005/09/09 18:16:28 roberto Exp roberto $ 2** $Id: ldo.c,v 2.34 2005/10/06 20:44:22 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*/
@@ -426,6 +426,7 @@ LUA_API int lua_resume (lua_State *L, int nargs) {
426 if (status != 0) { /* error? */ 426 if (status != 0) { /* error? */
427 L->status = cast(lu_byte, status); /* mark thread as `dead' */ 427 L->status = cast(lu_byte, status); /* mark thread as `dead' */
428 luaD_seterrorobj(L, status, L->top); 428 luaD_seterrorobj(L, status, L->top);
429 L->ci->top = L->top;
429 } 430 }
430 else 431 else
431 status = L->status; 432 status = L->status;