aboutsummaryrefslogtreecommitdiff
path: root/ldo.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--ldo.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/ldo.c b/ldo.c
index fb9df5d3..994ad6f0 100644
--- a/ldo.c
+++ b/ldo.c
@@ -133,6 +133,7 @@ l_noret luaD_throw (lua_State *L, int errcode) {
133 else { /* thread has no error handler */ 133 else { /* thread has no error handler */
134 global_State *g = G(L); 134 global_State *g = G(L);
135 errcode = luaE_resetthread(L, errcode); /* close all upvalues */ 135 errcode = luaE_resetthread(L, errcode); /* close all upvalues */
136 L->status = cast_byte(errcode);
136 if (g->mainthread->errorJmp) { /* main thread has a handler? */ 137 if (g->mainthread->errorJmp) { /* main thread has a handler? */
137 setobjs2s(L, g->mainthread->top.p++, L->top.p - 1); /* copy error obj. */ 138 setobjs2s(L, g->mainthread->top.p++, L->top.p - 1); /* copy error obj. */
138 luaD_throw(g->mainthread, errcode); /* re-throw in main thread */ 139 luaD_throw(g->mainthread, errcode); /* re-throw in main thread */