From 35347bef8d56d9bcd4594d212c9793b8ce59e6ba Mon Sep 17 00:00:00 2001 From: Andrew D. France Date: Tue, 22 Jul 2025 23:33:27 -0500 Subject: Re-added luaL_openlibs(L); ln:1495 --- src/lush.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/lush.c b/src/lush.c index 82c272e..eef8f6d 100644 --- a/src/lush.c +++ b/src/lush.c @@ -1492,7 +1492,7 @@ int main(int argc, char *argv[]) { // init lua state lua_State *L = luaL_newstate(); - lua_openlibs(L); + luaL_openlibs(L); // --- Pre-load compat modules --- // This is to make C modules available to Lua -- cgit v1.2.3-59-g8ed1b