aboutsummaryrefslogtreecommitdiff
path: root/ldo.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2001-06-08 16:01:38 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2001-06-08 16:01:38 -0300
commitcbc59592ff684b646b21766a66630df1f7974b25 (patch)
tree1e28529cda3b8f6baa63285f6a2571767c3ed05e /ldo.h
parent4905fdd1350bde68cd818b9198f28f5a47c208b0 (diff)
downloadlua-cbc59592ff684b646b21766a66630df1f7974b25.tar.gz
lua-cbc59592ff684b646b21766a66630df1f7974b25.tar.bz2
lua-cbc59592ff684b646b21766a66630df1f7974b25.zip
new definition for `luaD_call' and `luaD_adjusttop'
Diffstat (limited to 'ldo.h')
-rw-r--r--ldo.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ldo.h b/ldo.h
index eda4f526..618e8bee 100644
--- a/ldo.h
+++ b/ldo.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ldo.h,v 1.32 2001/03/07 18:09:25 roberto Exp roberto $ 2** $Id: ldo.h,v 1.33 2001/06/05 19:41: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*/
@@ -23,9 +23,9 @@
23 23
24 24
25void luaD_init (lua_State *L, int stacksize); 25void luaD_init (lua_State *L, int stacksize);
26void luaD_adjusttop (lua_State *L, StkId base, int extra); 26void luaD_adjusttop (lua_State *L, StkId newtop);
27void luaD_lineHook (lua_State *L, int line, lua_Hook linehook); 27void luaD_lineHook (lua_State *L, int line, lua_Hook linehook);
28void luaD_call (lua_State *L, StkId func, int nResults); 28void luaD_call (lua_State *L, StkId func);
29void luaD_stackerror (lua_State *L); 29void luaD_stackerror (lua_State *L);
30 30
31void luaD_error (lua_State *L, const l_char *s); 31void luaD_error (lua_State *L, const l_char *s);