diff options
Diffstat (limited to 'util-src/signal.c')
-rw-r--r-- | util-src/signal.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/util-src/signal.c b/util-src/signal.c index 961d2d3e..405689f5 100644 --- a/util-src/signal.c +++ b/util-src/signal.c @@ -384,7 +384,8 @@ int luaopen_util_signal(lua_State *L) int i = 0; /* add the library */ - luaL_register(L, "signal", lsignal_lib); + lua_newtable(L); + luaL_register(L, NULL, lsignal_lib); /* push lua_signals table into the registry */ /* put the signals inside the library table too, |