Commit 4d429b61 authored by Jean-Philippe André's avatar Jean-Philippe André

Lua: remove 'http' shortcut.

Since 6bb9f2996 (or master/1834c5a7) it was not possible to load
luahttp using this shortcut anyway.
parent 8078a54f
...@@ -78,6 +78,7 @@ static const struct ...@@ -78,6 +78,7 @@ static const struct
{ "luatelnet", "telnet" }, { "luatelnet", "telnet" },
{ "telnet", "telnet" }, { "telnet", "telnet" },
{ "luahttp", "http" }, { "luahttp", "http" },
/* { "http", "http" }, */
{ NULL, NULL } }; { NULL, NULL } };
static const char *WordInList( const char *psz_list, const char *psz_word ) static const char *WordInList( const char *psz_list, const char *psz_word )
......
...@@ -76,7 +76,7 @@ vlc_module_begin () ...@@ -76,7 +76,7 @@ vlc_module_begin ()
set_description( N_("Interfaces implemented using lua scripts") ) set_description( N_("Interfaces implemented using lua scripts") )
add_shortcut( "luaintf" ) add_shortcut( "luaintf" )
add_shortcut( "luahttp" ) add_shortcut( "luahttp" )
add_shortcut( "http" ) /* add_shortcut( "http" ) */
add_shortcut( "luatelnet" ) add_shortcut( "luatelnet" )
add_shortcut( "telnet" ) add_shortcut( "telnet" )
add_shortcut( "luahotkeys" ) add_shortcut( "luahotkeys" )
......
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