# HG changeset patch
# User Kim Alvefur <zash@zash.se>
# Date 1479514288 -3600
# Node ID f928695a2af1b7af67b08360f536ea45a5c3e809
# Parent  20a69ef5570c612f47b2e27845d04aa47cbe0fa5
util.async: Add annotation to ignore warning [luacheck]

diff -r 20a69ef5570c -r f928695a2af1 util/async.lua
--- a/util/async.lua	Sat Nov 19 01:11:53 2016 +0100
+++ b/util/async.lua	Sat Nov 19 01:11:28 2016 +0100
@@ -85,7 +85,7 @@
 runner_mt.__index = runner_mt;
 
 local function runner_create_thread(func, self)
-	local thread = coroutine.create(function (self)
+	local thread = coroutine.create(function (self) -- luacheck: ignore 432/self
 		while true do
 			func(coroutine.yield("ready", self));
 		end