util.async: Use wrapper for once runner (thanks luacheck)

This commit is contained in:
Kim Alvefur 2018-03-22 23:15:04 +01:00
parent c0912560a4
commit 1ca1c9bb32
2 changed files with 2 additions and 1 deletions

View file

@ -231,7 +231,7 @@ do
};
local function once_runner(func) func(); end
function once(func)
local r = runner(func, once_watchers);
local r = runner(once_runner, once_watchers);
return r:run(func);
end
end