summaryrefslogtreecommitdiff
path: root/apps/plugins/lua/rocklua.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/lua/rocklua.c')
-rw-r--r--apps/plugins/lua/rocklua.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/apps/plugins/lua/rocklua.c b/apps/plugins/lua/rocklua.c
index 5360090cab..1162c026d1 100644
--- a/apps/plugins/lua/rocklua.c
+++ b/apps/plugins/lua/rocklua.c
@@ -30,9 +30,10 @@
30PLUGIN_HEADER 30PLUGIN_HEADER
31 31
32static const luaL_Reg lualibs[] = { 32static const luaL_Reg lualibs[] = {
33 {"", luaopen_base}, 33 {"", luaopen_base},
34 {LUA_TABLIBNAME, luaopen_table}, 34 {LUA_TABLIBNAME, luaopen_table},
35 {LUA_STRLIBNAME, luaopen_string}, 35 {LUA_STRLIBNAME, luaopen_string},
36 {LUA_OSLIBNAME, luaopen_os},
36 {LUA_ROCKLIBNAME, luaopen_rock}, 37 {LUA_ROCKLIBNAME, luaopen_rock},
37 {NULL, NULL} 38 {NULL, NULL}
38}; 39};