diff options
author | Mike Pall <mike> | 2016-07-17 14:29:03 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2016-07-17 14:29:03 +0200 |
commit | 1914de71c7dc10c502ecf033c63665eb6d3e6433 (patch) | |
tree | f70aaa67c8b61c29f2f8687594b553a2b0a227ed /src/jit/dis_ppc.lua | |
parent | aef4edddbabb9b510541abd131f9298a25a52e7d (diff) | |
download | luajit-1914de71c7dc10c502ecf033c63665eb6d3e6433.tar.gz luajit-1914de71c7dc10c502ecf033c63665eb6d3e6433.tar.bz2 luajit-1914de71c7dc10c502ecf033c63665eb6d3e6433.zip |
Fix unused vars etc. in internal Lua files.
Thanks to François Perrad.
Diffstat (limited to 'src/jit/dis_ppc.lua')
-rw-r--r-- | src/jit/dis_ppc.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jit/dis_ppc.lua b/src/jit/dis_ppc.lua index 8afecbe6..1a98c7ec 100644 --- a/src/jit/dis_ppc.lua +++ b/src/jit/dis_ppc.lua | |||
@@ -13,7 +13,7 @@ | |||
13 | ------------------------------------------------------------------------------ | 13 | ------------------------------------------------------------------------------ |
14 | 14 | ||
15 | local type = type | 15 | local type = type |
16 | local sub, byte, format = string.sub, string.byte, string.format | 16 | local byte, format = string.byte, string.format |
17 | local match, gmatch, gsub = string.match, string.gmatch, string.gsub | 17 | local match, gmatch, gsub = string.match, string.gmatch, string.gsub |
18 | local concat = table.concat | 18 | local concat = table.concat |
19 | local bit = require("bit") | 19 | local bit = require("bit") |