aboutsummaryrefslogtreecommitdiff
path: root/ldo.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2017-11-04 10:57:02 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2017-11-04 10:57:02 -0200
commit93fd67b7936f0f1fc20645d18eb85a193887c315 (patch)
tree11cd249fad6b0253f0de48b94c08ab08671b8544 /ldo.h
parent6bb3e40a8d2cdb64a6ac1962d8748dd638a11721 (diff)
downloadlua-93fd67b7936f0f1fc20645d18eb85a193887c315.tar.gz
lua-93fd67b7936f0f1fc20645d18eb85a193887c315.tar.bz2
lua-93fd67b7936f0f1fc20645d18eb85a193887c315.zip
no more 'CallInfo' structure
Diffstat (limited to 'ldo.h')
-rw-r--r--ldo.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/ldo.h b/ldo.h
index fedf70d4..4c03d594 100644
--- a/ldo.h
+++ b/ldo.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ldo.h,v 2.30 2017/05/13 12:57:20 roberto Exp roberto $ 2** $Id: ldo.h,v 2.31 2017/06/29 15:06:44 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*/
@@ -52,8 +52,7 @@ LUAI_FUNC void luaD_call (lua_State *L, StkId func, int nResults);
52LUAI_FUNC void luaD_callnoyield (lua_State *L, StkId func, int nResults); 52LUAI_FUNC void luaD_callnoyield (lua_State *L, StkId func, int nResults);
53LUAI_FUNC int luaD_pcall (lua_State *L, Pfunc func, void *u, 53LUAI_FUNC int luaD_pcall (lua_State *L, Pfunc func, void *u,
54 ptrdiff_t oldtop, ptrdiff_t ef); 54 ptrdiff_t oldtop, ptrdiff_t ef);
55LUAI_FUNC int luaD_poscall (lua_State *L, CallInfo *ci, StkId firstResult, 55LUAI_FUNC int luaD_poscall (lua_State *L, StkId firstResult, int nres);
56 int nres);
57LUAI_FUNC void luaD_reallocstack (lua_State *L, int newsize); 56LUAI_FUNC void luaD_reallocstack (lua_State *L, int newsize);
58LUAI_FUNC void luaD_growstack (lua_State *L, int n); 57LUAI_FUNC void luaD_growstack (lua_State *L, int n);
59LUAI_FUNC void luaD_shrinkstack (lua_State *L); 58LUAI_FUNC void luaD_shrinkstack (lua_State *L);