summaryrefslogtreecommitdiff
path: root/ldo.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-08-29 11:48:16 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-08-29 11:48:16 -0300
commit9d605982605db5ab8117b4cda71284bca2d25db8 (patch)
tree968b70b828f62ee945134424fbec866b4fc0f1bc /ldo.h
parent4e56c0d51412817a238f9de6453aaa16704a770d (diff)
downloadlua-9d605982605db5ab8117b4cda71284bca2d25db8.tar.gz
lua-9d605982605db5ab8117b4cda71284bca2d25db8.tar.bz2
lua-9d605982605db5ab8117b4cda71284bca2d25db8.zip
better definitions for MULTRET
Diffstat (limited to 'ldo.h')
-rw-r--r--ldo.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/ldo.h b/ldo.h
index ba168ccb..becbf417 100644
--- a/ldo.h
+++ b/ldo.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ldo.h,v 1.22 2000/08/07 18:39:16 roberto Exp roberto $ 2** $Id: ldo.h,v 1.23 2000/08/28 17:57:04 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*/
@@ -21,7 +21,6 @@
21 21
22void luaD_init (lua_State *L, int stacksize); 22void luaD_init (lua_State *L, int stacksize);
23void luaD_adjusttop (lua_State *L, StkId base, int extra); 23void luaD_adjusttop (lua_State *L, StkId base, int extra);
24void luaD_openstack (lua_State *L, StkId pos);
25void luaD_lineHook (lua_State *L, StkId func, int line, lua_Hook linehook); 24void luaD_lineHook (lua_State *L, StkId func, int line, lua_Hook linehook);
26void luaD_call (lua_State *L, StkId func, int nResults); 25void luaD_call (lua_State *L, StkId func, int nResults);
27void luaD_callTM (lua_State *L, const TObject *f, int nParams, int nResults); 26void luaD_callTM (lua_State *L, const TObject *f, int nParams, int nResults);