From de238d1d179a0f1a1df24bf8a5378336465b86b8 Mon Sep 17 00:00:00 2001 From: Francois Perrad Date: Sat, 16 Jul 2016 15:56:19 +0200 Subject: [PATCH] [luacheck] fix (W211) unused variable sub & gsub --- src/jit/dis_mips.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/jit/dis_mips.lua b/src/jit/dis_mips.lua index 6776f0cb..c8fb0ea8 100644 --- a/src/jit/dis_mips.lua +++ b/src/jit/dis_mips.lua @@ -11,8 +11,8 @@ ------------------------------------------------------------------------------ local type = type -local sub, byte, format = string.sub, string.byte, string.format -local match, gmatch, gsub = string.match, string.gmatch, string.gsub +local byte, format = string.byte, string.format +local match, gmatch = string.match, string.gmatch local concat = table.concat local bit = require("bit") local band, bor, tohex = bit.band, bit.bor, bit.tohex