[vlc-commits] RC: try the vlm commands later in the process

Jean-Baptiste Kempf git at videolan.org
Mon Oct 3 00:24:59 CEST 2011


vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Mon Oct  3 00:20:50 2011 +0200| [d570f62ed93dd45253ad1a646d43acc58a733a8c] | committer: Jean-Baptiste Kempf

RC: try the vlm commands later in the process

Works-around #5396

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=d570f62ed93dd45253ad1a646d43acc58a733a8c
---

 share/lua/intf/cli.lua |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/share/lua/intf/cli.lua b/share/lua/intf/cli.lua
index b8a0b7a..c42d632 100644
--- a/share/lua/intf/cli.lua
+++ b/share/lua/intf/cli.lua
@@ -697,11 +697,11 @@ function client_command( client )
     elseif string.sub(cmd,0,1)=='@'
     and call_object_command(string.sub(cmd,2,#cmd),client,arg) == 0 then
         --
-    elseif call_vlm_command(cmd,client,arg) == 0 then
-        --
     elseif client.type == host.client_type.stdio
     and call_libvlc_command(cmd,client,arg) == 0 then
         --
+    elseif call_vlm_command(cmd,client,arg) == 0 then
+        --
     else
         local choices = {}
         if client.env.autocompletion ~= 0 then



More information about the vlc-commits mailing list