]> git.sesse.net Git - vlc/commitdiff
Lua: remove 'http' shortcut.
authorJean-Philippe André <jpeg@videolan.org>
Sun, 6 Jun 2010 05:44:36 +0000 (13:44 +0800)
committerJean-Philippe André <jpeg@videolan.org>
Sun, 6 Jun 2010 06:04:36 +0000 (14:04 +0800)
Since 6bb9f2996 (or master/1834c5a73e) it was not possible to load
luahttp using this shortcut anyway.

modules/misc/lua/intf.c
modules/misc/lua/vlc.c

index 7e361137f64ad694826a243b6c87ff65546ea42c..fcd64b915a7cac627aa1aeed05b61251da2ca332 100644 (file)
@@ -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 )
index 2e7b8bdeb865a91590a184e7900ffaf6a578d182..e44e60d900aad42f8b533f8a6cd8cfa5acb811d4 100644 (file)
@@ -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" )