lua 5.4.5 :

- ricompilazione per nuova versione.
This commit is contained in:
DarioS
2023-05-03 09:38:47 +02:00
parent 47789a0a7d
commit 19f4e327e6
41 changed files with 996 additions and 741 deletions
+7 -2
View File
@@ -725,8 +725,13 @@ static const luaL_Reg ll_funcs[] = {
static void createsearcherstable (lua_State *L) {
static const lua_CFunction searchers[] =
{searcher_preload, searcher_Lua, searcher_C, searcher_Croot, NULL};
static const lua_CFunction searchers[] = {
searcher_preload,
searcher_Lua,
searcher_C,
searcher_Croot,
NULL
};
int i;
/* create 'searchers' table */
lua_createtable(L, sizeof(searchers)/sizeof(searchers[0]) - 1, 0);