summaryrefslogtreecommitdiffstats
path: root/player/lua
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2019-11-23 14:40:00 +0100
committerwm4 <wm4@nowhere>2019-11-23 14:40:00 +0100
commit311cc5b611ae9baed47549ee3ad2cef04f4892e0 (patch)
treec4d00cbbc860270d179e03f2e8d1071ac4703149 /player/lua
parent66a46cba89e386de08634d53549e26aa0b558199 (diff)
downloadmpv-311cc5b611ae9baed47549ee3ad2cef04f4892e0.tar.bz2
mpv-311cc5b611ae9baed47549ee3ad2cef04f4892e0.tar.xz
lua: make add_key_binding() rotate optional arguments correctly
add_key_binding() makes the name argument optional (in weird Lua fashion), which did not work if there were additional arguments. So there is no way to avoid specifying a name while passing a rp argument. Fix this, declare this way of skipping the argument as deprecated, and allow passing name=nil as the preferred way to skip the name argument.
Diffstat (limited to 'player/lua')
-rw-r--r--player/lua/defaults.lua6
1 files changed, 5 insertions, 1 deletions
diff --git a/player/lua/defaults.lua b/player/lua/defaults.lua
index 38b6a9d04b..72b73b566b 100644
--- a/player/lua/defaults.lua
+++ b/player/lua/defaults.lua
@@ -157,8 +157,12 @@ end
local function add_binding(attrs, key, name, fn, rp)
rp = rp or ""
- if (type(name) ~= "string") and (not fn) then
+ if (type(name) ~= "string") and (name ~= nil) then
+ rp = fn
fn = name
+ name = nil
+ end
+ if name == nil then
name = reserve_binding()
end
local repeatable = rp == "repeatable" or rp["repeatable"]