]> git.sesse.net Git - vlc/commitdiff
Lua: fix typo in rc.lua
authorJean-Philippe André <jpeg@endymion.via.ecp.fr>
Wed, 11 Nov 2009 20:29:43 +0000 (21:29 +0100)
committerJean-Philippe André <jpeg@endymion.via.ecp.fr>
Wed, 11 Nov 2009 20:41:20 +0000 (21:41 +0100)
share/lua/intf/rc.lua

index b32b8058ecfbe8673d219a3900dc6bc000ff0090..ae18bc02c78c1dd78e17786cd435e24c686881a7 100644 (file)
@@ -26,14 +26,14 @@ description=
  Remote control interface for VLC
 
  This is a modules/control/rc.c look alike (with a bunch of new features)
+
  Use on local term:
     vlc -I luarc
  Use on tcp connection:
     vlc -I luarc --lua-config "rc={host='localhost:4212'}"
  Use on multiple hosts (term + 2 tcp ports):
     vlc -I luarc --lua-config "rc={hosts={'*console','localhost:4212','localhost:5678'}}"
+
  Note:
     -I luarc is an alias for -I lua --lua-intf rc
 
@@ -352,7 +352,7 @@ function titlechap(name,client,value)
     else
         local item = vlc.var.get( input, var )
         -- Todo: add item name conversion
-        client:apped(item)
+        client:append(item)
     end
 end
 function titlechap_offset(client,offset)