From: Jean-Philippe André Date: Sun, 6 Jun 2010 05:44:36 +0000 (+0800) Subject: Lua: remove 'http' shortcut. X-Git-Tag: 1.2.0-pre1~6291 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=4d429b613e427f49a272185dcc26c7d03e7243c7;p=vlc Lua: remove 'http' shortcut. Since 6bb9f2996 (or master/1834c5a73e) it was not possible to load luahttp using this shortcut anyway. --- diff --git a/modules/misc/lua/intf.c b/modules/misc/lua/intf.c index 7e361137f6..fcd64b915a 100644 --- a/modules/misc/lua/intf.c +++ b/modules/misc/lua/intf.c @@ -78,6 +78,7 @@ static const struct { "luatelnet", "telnet" }, { "telnet", "telnet" }, { "luahttp", "http" }, + /* { "http", "http" }, */ { NULL, NULL } }; static const char *WordInList( const char *psz_list, const char *psz_word ) diff --git a/modules/misc/lua/vlc.c b/modules/misc/lua/vlc.c index 2e7b8bdeb8..e44e60d900 100644 --- a/modules/misc/lua/vlc.c +++ b/modules/misc/lua/vlc.c @@ -76,7 +76,7 @@ vlc_module_begin () set_description( N_("Interfaces implemented using lua scripts") ) add_shortcut( "luaintf" ) add_shortcut( "luahttp" ) - add_shortcut( "http" ) + /* add_shortcut( "http" ) */ add_shortcut( "luatelnet" ) add_shortcut( "telnet" ) add_shortcut( "luahotkeys" )