summaryrefslogtreecommitdiff
path: root/ldebug.c
diff options
context:
space:
mode:
Diffstat (limited to 'ldebug.c')
-rw-r--r--ldebug.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ldebug.c b/ldebug.c
index 211806bb..da0fd7a4 100644
--- a/ldebug.c
+++ b/ldebug.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ldebug.c,v 2.115 2015/05/22 17:45:56 roberto Exp roberto $ 2** $Id: ldebug.c,v 2.116 2015/10/22 14:40:47 roberto Exp roberto $
3** Debug Interface 3** Debug Interface
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -618,7 +618,7 @@ l_noret luaG_errormsg (lua_State *L) {
618 setobjs2s(L, L->top, L->top - 1); /* move argument */ 618 setobjs2s(L, L->top, L->top - 1); /* move argument */
619 setobjs2s(L, L->top - 1, errfunc); /* push function */ 619 setobjs2s(L, L->top - 1, errfunc); /* push function */
620 L->top++; /* assume EXTRA_STACK */ 620 L->top++; /* assume EXTRA_STACK */
621 luaD_call(L, L->top - 2, 1, 0); /* call it */ 621 luaD_callnoyield(L, L->top - 2, 1); /* call it */
622 } 622 }
623 luaD_throw(L, LUA_ERRRUN); 623 luaD_throw(L, LUA_ERRRUN);
624} 624}