Fix unused vars etc. in internal Lua files.

Thanks to François Perrad.
This commit is contained in:
Mike Pall
2016-07-17 14:29:03 +02:00
parent aef4edddba
commit 1914de71c7
5 changed files with 11 additions and 11 deletions

View File

@@ -12,7 +12,7 @@
local type = type
local sub, byte, format = string.sub, string.byte, string.format
local match, gmatch, gsub = string.match, string.gmatch, string.gsub
local match, gmatch = string.match, string.gmatch
local concat = table.concat
local bit = require("bit")
local band, bor, ror, tohex = bit.band, bit.bor, bit.ror, bit.tohex