aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGravatar Andrew D. France 2025-07-22 23:27:06 -0500
committerGravatar Andrew D. France 2025-07-22 23:27:06 -0500
commit69001c115100a19955249bfb6ec45ad332cd5ae8 (patch)
tree9f44f5bba12357eb70221fa132767213f1b6331f /src
parentFixed the header path for compat: preload compat modules for lua within lua-i... (diff)
Compat53 library uses the floor function, which is part of the C math library (libm); removed the incorrect luaopen_compat53 call that was still present
Diffstat (limited to 'src')
-rw-r--r--src/lush.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/lush.c b/src/lush.c
index 8beed6a..88d2998 100644
--- a/src/lush.c
+++ b/src/lush.c
@@ -1510,7 +1510,6 @@ int main(int argc, char *argv[]) {
// Pop package and preload tables
lua_pop(L, 2);
// --- End pre-loading ---
- luaopen_compat53(L);
lua_register_api(L);
lua_run_init(L);