summaryrefslogtreecommitdiff
path: root/ldo.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-08-06 12:32:22 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-08-06 12:32:22 -0300
commita2fa48a570b01b2a2cd37f01799f08f693fc5892 (patch)
treeb41fc7e88f7f941ae1589921f8d7c0ff57146f4d /ldo.h
parent8b2b8790b5c419282f4fa0c7faa168379647b3b9 (diff)
downloadlua-a2fa48a570b01b2a2cd37f01799f08f693fc5892.tar.gz
lua-a2fa48a570b01b2a2cd37f01799f08f693fc5892.tar.bz2
lua-a2fa48a570b01b2a2cd37f01799f08f693fc5892.zip
new (old?) error handling scheme
Diffstat (limited to 'ldo.h')
-rw-r--r--ldo.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ldo.h b/ldo.h
index fdd889ed..0d6047cc 100644
--- a/ldo.h
+++ b/ldo.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ldo.h,v 1.48 2002/07/08 18:21:33 roberto Exp roberto $ 2** $Id: ldo.h,v 1.49 2002/08/05 17:36:24 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*/
@@ -39,7 +39,7 @@ int luaD_protectedparser (lua_State *L, ZIO *z, int bin);
39void luaD_callhook (lua_State *L, lua_Hookevent event, int line); 39void luaD_callhook (lua_State *L, lua_Hookevent event, int line);
40StkId luaD_precall (lua_State *L, StkId func); 40StkId luaD_precall (lua_State *L, StkId func);
41void luaD_call (lua_State *L, StkId func, int nResults); 41void luaD_call (lua_State *L, StkId func, int nResults);
42int luaD_pcall (lua_State *L, int nargs, int nresults); 42int luaD_pcall (lua_State *L, int nargs, int nresults, int errfunc);
43void luaD_poscall (lua_State *L, int wanted, StkId firstResult); 43void luaD_poscall (lua_State *L, int wanted, StkId firstResult);
44void luaD_reallocCI (lua_State *L, int newsize); 44void luaD_reallocCI (lua_State *L, int newsize);
45void luaD_reallocstack (lua_State *L, int newsize); 45void luaD_reallocstack (lua_State *L, int newsize);