# HG changeset patch # User Anton Shestakov # Date 1469691588 -28800 # Node ID 936b78e9f39917e81b3511649fcbc4c931a6812f # Parent 71ef4a4104d3da4bbd05ff5baacea7e4d54f0312 net.dns: remove unused variable unpack [luacheck] diff -r 71ef4a4104d3 -r 936b78e9f399 net/dns.lua --- a/net/dns.lua Thu Jul 28 16:14:39 2016 +0800 +++ b/net/dns.lua Thu Jul 28 15:39:48 2016 +0800 @@ -22,8 +22,8 @@ local coroutine, io, math, string, table = coroutine, io, math, string, table; -local ipairs, next, pairs, print, setmetatable, tostring, assert, error, select, type, unpack= - ipairs, next, pairs, print, setmetatable, tostring, assert, error, select, type, table.unpack or unpack; +local ipairs, next, pairs, print, setmetatable, tostring, assert, error, select, type = + ipairs, next, pairs, print, setmetatable, tostring, assert, error, select, type; local ztact = { -- public domain 20080404 lua@ztact.com get = function(parent, ...)