summaryrefslogtreecommitdiff
path: root/ldo.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-06-18 14:10:43 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-06-18 14:10:43 -0300
commit6ee2dbdfe94e55cc098646df6aaee0483b5fff2c (patch)
treeaa100b536448ff9104314b59f1ef3d7875706aa1 /ldo.h
parent1dbe708aa84f3a1e51daf8d7e2f714e2b02f554b (diff)
downloadlua-6ee2dbdfe94e55cc098646df6aaee0483b5fff2c.tar.gz
lua-6ee2dbdfe94e55cc098646df6aaee0483b5fff2c.tar.bz2
lua-6ee2dbdfe94e55cc098646df6aaee0483b5fff2c.zip
traceback stops at first protected call
Diffstat (limited to 'ldo.h')
-rw-r--r--ldo.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/ldo.h b/ldo.h
index 4ff39092..dc856bf6 100644
--- a/ldo.h
+++ b/ldo.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ldo.h,v 1.45 2002/05/15 18:57:44 roberto Exp roberto $ 2** $Id: ldo.h,v 1.46 2002/06/18 15:19:27 roberto Exp roberto $
3** Stack and Call structure of Lua 3** Stack and Call structure of Lua
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -43,6 +43,7 @@ void luaD_growstack (lua_State *L, int n);
43 43
44void luaD_throw (lua_State *L, int errcode); 44void luaD_throw (lua_State *L, int errcode);
45int luaD_runprotected (lua_State *L, Pfunc f, TObject *ud); 45int luaD_runprotected (lua_State *L, Pfunc f, TObject *ud);
46int luaD_isprotected (lua_State *L, CallInfo *ci);
46 47
47 48
48#endif 49#endif