Merge pull request #1036 from cmertz/master

remove client.jumpto deprecation warnings
This commit is contained in:
Emmanuel Lepage Vallée 2016-08-10 12:17:49 -04:00 committed by GitHub
commit 03dc4767d5
2 changed files with 2 additions and 2 deletions

View File

@ -1091,7 +1091,7 @@ function client.run_or_raise(cmd, matcher, merge)
local c = client.iterate(matcher, start)()
if c then
client.jumpto(c, merge)
c:jump_to(merge)
else
-- client not found, spawn it
spawn(cmd)

View File

@ -54,7 +54,7 @@ end
function urgent.jumpto(merge)
local c = client.urgent.get()
if c then
client.jumpto(c, merge)
c:jump_to(merge)
end
end