Commit a569473a authored by Fabio Ritrovato's avatar Fabio Ritrovato

Lua SD: don't open the playlist lib

parent dce84f16
...@@ -102,7 +102,6 @@ int Open_LuaSD( vlc_object_t *p_this ) ...@@ -102,7 +102,6 @@ int Open_LuaSD( vlc_object_t *p_this )
luaopen_misc( L ); luaopen_misc( L );
luaopen_net( L ); luaopen_net( L );
luaopen_object( L ); luaopen_object( L );
luaopen_playlist( L );
luaopen_sd( L ); luaopen_sd( L );
luaopen_strings( L ); luaopen_strings( L );
luaopen_variables( L ); luaopen_variables( L );
......
...@@ -15,5 +15,5 @@ User defined modules stored in the share/lua/modules/ directory are ...@@ -15,5 +15,5 @@ User defined modules stored in the share/lua/modules/ directory are
available. For example, to use the sandbox module, just use available. For example, to use the sandbox module, just use
'require "sandbox"' in your interface. 'require "sandbox"' in your interface.
Available VLC specific Lua modules: input, msg, misc, net, object, playlist, sd, Available VLC specific Lua modules: input, msg, misc, net, object, sd,
strings, variables, stream, gettext, xml. See lua/README.txt. strings, variables, stream, gettext, xml. See lua/README.txt.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment