aboutsummaryrefslogtreecommitdiff
path: root/ldo.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2017-11-23 16:29:41 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2017-11-23 16:29:41 -0200
commit194a4f9710130cdb90df9f4094d81813bdb8ad6b (patch)
tree16a532914ecdaf7d94a52695085c5449b76a330d /ldo.h
parent196c87c9cecfacf978f37de4ec69eba0a5971256 (diff)
downloadlua-194a4f9710130cdb90df9f4094d81813bdb8ad6b.tar.gz
lua-194a4f9710130cdb90df9f4094d81813bdb8ad6b.tar.bz2
lua-194a4f9710130cdb90df9f4094d81813bdb8ad6b.zip
small simplifications in 'luaD_poscall'
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 4fba45b5..a9b46cdf 100644
--- a/ldo.h
+++ b/ldo.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ldo.h,v 2.34 2017/11/21 14:18:03 roberto Exp roberto $ 2** $Id: ldo.h,v 2.35 2017/11/23 16:35:54 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*/
@@ -53,7 +53,7 @@ LUAI_FUNC void luaD_callnoyield (lua_State *L, StkId func, int nResults);
53LUAI_FUNC StkId luaD_tryfuncTM (lua_State *L, StkId func); 53LUAI_FUNC StkId luaD_tryfuncTM (lua_State *L, StkId func);
54LUAI_FUNC int luaD_pcall (lua_State *L, Pfunc func, void *u, 54LUAI_FUNC int luaD_pcall (lua_State *L, Pfunc func, void *u,
55 ptrdiff_t oldtop, ptrdiff_t ef); 55 ptrdiff_t oldtop, ptrdiff_t ef);
56LUAI_FUNC int luaD_poscall (lua_State *L, CallInfo *ci, StkId firstResult, 56LUAI_FUNC void luaD_poscall (lua_State *L, CallInfo *ci, StkId firstResult,
57 int nres); 57 int nres);
58LUAI_FUNC void luaD_reallocstack (lua_State *L, int newsize); 58LUAI_FUNC void luaD_reallocstack (lua_State *L, int newsize);
59LUAI_FUNC void luaD_growstack (lua_State *L, int n); 59LUAI_FUNC void luaD_growstack (lua_State *L, int n);