From 6ee2dbdfe94e55cc098646df6aaee0483b5fff2c Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy <roberto@inf.puc-rio.br> Date: Tue, 18 Jun 2002 14:10:43 -0300 Subject: traceback stops at first protected call --- luadebug.h | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) (limited to 'luadebug.h') diff --git a/luadebug.h b/luadebug.h index 0836ba4a..c7ea3da4 100644 --- a/luadebug.h +++ b/luadebug.h @@ -1,5 +1,5 @@ /* -** $Id: luadebug.h,v 1.26 2002/03/14 16:50:06 roberto Exp roberto $ +** $Id: luadebug.h,v 1.27 2002/04/04 17:21:31 roberto Exp roberto $ ** Debugging API ** See Copyright Notice in lua.h */ @@ -28,14 +28,15 @@ LUA_API lua_Hook lua_setlinehook (lua_State *L, lua_Hook func); #define LUA_IDSIZE 60 struct lua_Debug { - const char *event; /* `call', `return', `line' */ - const char *name; /* (n) */ - const char *namewhat; /* (n) `global', `local', `field', `method' */ - const char *what; /* (S) `Lua' function, `C' function, Lua `main' */ - const char *source; /* (S) */ - int currentline; /* (l) */ - int nups; /* (u) number of upvalues */ - int linedefined; /* (S) */ + const char *event; /* `call', `return', `line' */ + const char *name; /* (n) */ + const char *namewhat; /* (n) `global', `local', `field', `method' */ + const char *what; /* (S) `Lua' function, `C' function, Lua `main' */ + const char *source; /* (S) */ + int currentline; /* (l) */ + int isprotected; /* (c) function was called in protected mode */ + int nups; /* (u) number of upvalues */ + int linedefined; /* (S) */ char short_src[LUA_IDSIZE]; /* (S) */ /* private part */ int i_ci; /* active function */ -- cgit v1.2.3-55-g6feb