mirror of
https://github.com/lua/lua
synced 2026-09-26 16:17:11 +03:00
Removed unused function 'luaD_inctop'
Commit 3228a97 removed all its uses.
This commit is contained in:
parent
0465c23b3e
commit
40b76de2d7
2 changed files with 0 additions and 7 deletions
6
ldo.c
6
ldo.c
|
|
@ -430,12 +430,6 @@ void luaD_shrinkstack (lua_State *L) {
|
||||||
luaE_shrinkCI(L); /* shrink CI list */
|
luaE_shrinkCI(L); /* shrink CI list */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void luaD_inctop (lua_State *L) {
|
|
||||||
L->top.p++;
|
|
||||||
luaD_checkstack(L, 1);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* }================================================================== */
|
/* }================================================================== */
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
1
ldo.h
1
ldo.h
|
|
@ -88,7 +88,6 @@ LUAI_FUNC void luaD_poscall (lua_State *L, CallInfo *ci, int nres);
|
||||||
LUAI_FUNC int luaD_reallocstack (lua_State *L, int newsize, int raiseerror);
|
LUAI_FUNC int luaD_reallocstack (lua_State *L, int newsize, int raiseerror);
|
||||||
LUAI_FUNC int luaD_growstack (lua_State *L, int n, int raiseerror);
|
LUAI_FUNC int luaD_growstack (lua_State *L, int n, int raiseerror);
|
||||||
LUAI_FUNC void luaD_shrinkstack (lua_State *L);
|
LUAI_FUNC void luaD_shrinkstack (lua_State *L);
|
||||||
LUAI_FUNC void luaD_inctop (lua_State *L);
|
|
||||||
LUAI_FUNC int luaD_checkminstack (lua_State *L);
|
LUAI_FUNC int luaD_checkminstack (lua_State *L);
|
||||||
LUAI_FUNC void luaD_anchorobj (lua_State *L, Table *anchor, GCObject *obj);
|
LUAI_FUNC void luaD_anchorobj (lua_State *L, Table *anchor, GCObject *obj);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue