From 6ee2dbdfe94e55cc098646df6aaee0483b5fff2c Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Tue, 18 Jun 2002 14:10:43 -0300 Subject: traceback stops at first protected call --- ldo.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'ldo.h') diff --git a/ldo.h b/ldo.h index 4ff39092..dc856bf6 100644 --- a/ldo.h +++ b/ldo.h @@ -1,5 +1,5 @@ /* -** $Id: ldo.h,v 1.45 2002/05/15 18:57:44 roberto Exp roberto $ +** $Id: ldo.h,v 1.46 2002/06/18 15:19:27 roberto Exp roberto $ ** Stack and Call structure of Lua ** See Copyright Notice in lua.h */ @@ -43,6 +43,7 @@ void luaD_growstack (lua_State *L, int n); void luaD_throw (lua_State *L, int errcode); int luaD_runprotected (lua_State *L, Pfunc f, TObject *ud); +int luaD_isprotected (lua_State *L, CallInfo *ci); #endif -- cgit v1.2.3-55-g6feb