From b4633c586b4ca189d3249e8c2b2a695a5280081c Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 10 Dec 2014 09:30:09 -0200 Subject: error handler does not need to be a function (can be a callable object) --- ldebug.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ldebug.c b/ldebug.c index 5ba41c9a..577114e6 100644 --- 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 */ -- cgit v1.2.3-55-g6feb