diff options
author | wfrsk <wfrsk@proton.me> | 2023-04-08 16:35:46 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2024-03-13 13:02:29 +0100 |
commit | 97f87932fec79bf78594b57262f866dffaa18e63 (patch) | |
tree | a958162f33a966d4a06ac3ec096d705da60a4e30 /src/plugins/lua | |
parent | b0581ac1f88cddaf3449d1891ede52c75c5f68a3 (diff) | |
download | weechat-97f87932fec79bf78594b57262f866dffaa18e63.zip |
lua: do not load the `debug` library
Diffstat (limited to 'src/plugins/lua')
-rw-r--r-- | src/plugins/lua/weechat-lua.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/plugins/lua/weechat-lua.c b/src/plugins/lua/weechat-lua.c index 1d9ff98d1..fc73e153c 100644 --- a/src/plugins/lua/weechat-lua.c +++ b/src/plugins/lua/weechat-lua.c @@ -558,7 +558,6 @@ weechat_lua_load (const char *filename, const char *code) luaopen_table (lua_current_interpreter); luaopen_math (lua_current_interpreter); luaopen_os (lua_current_interpreter); - luaopen_debug (lua_current_interpreter); #ifdef LUA_VERSION_NUM #if LUA_VERSION_NUM == 501 // Lua 5.1.x |