From 365445f2c06c3b65e6d2bffda3f390bbc79f0dd9 Mon Sep 17 00:00:00 2001 From: Francois Perrad Date: Sat, 16 Jul 2016 15:56:50 +0200 Subject: [PATCH] [luacheck] fix (W211) unused variable sub --- src/jit/dis_ppc.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jit/dis_ppc.lua b/src/jit/dis_ppc.lua index 30f51ecd..30eb3978 100644 --- a/src/jit/dis_ppc.lua +++ b/src/jit/dis_ppc.lua @@ -13,7 +13,7 @@ ------------------------------------------------------------------------------ local type = type -local sub, byte, format = string.sub, string.byte, string.format +local byte, format = string.byte, string.format local match, gmatch, gsub = string.match, string.gmatch, string.gsub local concat = table.concat local bit = require("bit")