diff options
Diffstat (limited to 'apps/plugins/lua/rocklib_img.c')
-rw-r--r-- | apps/plugins/lua/rocklib_img.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/plugins/lua/rocklib_img.c b/apps/plugins/lua/rocklib_img.c index 909f1b61b9..45012ece20 100644 --- a/apps/plugins/lua/rocklib_img.c +++ b/apps/plugins/lua/rocklib_img.c @@ -1424,9 +1424,10 @@ LUALIB_API int luaopen_rock_img(lua_State *L) lua_pushvalue(L, -1); /* pushes the metatable */ lua_setfield(L, -2, "__index"); /* metatable.__index = metatable */ + luaL_register(L, NULL, rli_lib); /*add rli_lib to the image metatable*/ luaL_register(L, LUA_ROCKLIBNAME, rocklib_img); - luaL_register(L, NULL, rli_lib); return 1; } + |