aboutsummaryrefslogtreecommitdiff
path: root/ldo.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-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