This is a probably broken version of build.py

This commit is contained in:
2026-02-11 13:21:42 -05:00
parent 159e97d5bb
commit 6e1248e3b8
6 changed files with 34 additions and 26 deletions

View File

@@ -1227,20 +1227,6 @@ LUA_API int lua_nkeys (lua_State *L, int idx) {
return n;
}
LUA_API int lua_nthkey (lua_State *L, int idx, int n) {
StkId t;
lua_lock(L);
t = index2addr(L, idx);
api_check(L, ttistable(t), "table expected");
api_incr_top(L);
api_incr_top(L);
int res = luaH_nthkey(L, hvalue(t), n, L->top - 2);
if (res == 0)
L->top -= 2;
lua_unlock(L);
return res;
}
LUA_API void lua_concat (lua_State *L, int n) {
lua_lock(L);
api_checknelems(L, n);

View File

@@ -317,7 +317,6 @@ LUA_API lua_Alloc (lua_getallocf) (lua_State *L, void **ud);
LUA_API void (lua_setallocf) (lua_State *L, lua_Alloc f, void *ud);
LUA_API int (lua_nkeys) (lua_State *L, int idx);
LUA_API int (lua_nthkey) (lua_State *L, int idx, int n);
/*
** ===============================================================