commit b4633c586b4ca189d3249e8c2b2a695a5280081c
parent 5fae2a5b05735e2853056ab8c415458a4e31917b
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date: Wed, 10 Dec 2014 09:29:44 -0200
error handler does not need to be a function (can be a callable
object)
Diffstat:
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/ldebug.c b/ldebug.c
@@ -1,5 +1,5 @@
/*
-** $Id: ldebug.c,v 2.107 2014/11/11 17:08:19 roberto Exp roberto $
+** $Id: ldebug.c,v 2.108 2014/12/08 15:48:23 roberto Exp roberto $
** Debug Interface
** See Copyright Notice in lua.h
*/
@@ -590,7 +590,6 @@ static void addinfo (lua_State *L, const char *msg) {
l_noret luaG_errormsg (lua_State *L) {
if (L->errfunc != 0) { /* is there an error handling function? */
StkId errfunc = restorestack(L, L->errfunc);
- if (!ttisfunction(errfunc)) luaD_throw(L, LUA_ERRERR);
setobjs2s(L, L->top, L->top - 1); /* move argument */
setobjs2s(L, L->top - 1, errfunc); /* push function */
L->top++; /* assume EXTRA_STACK */