[luacheck] fix (W311) value assigned to variable b is unused

This commit is contained in:
Francois Perrad 2016-07-16 15:58:28 +02:00
parent c1e99c32aa
commit 4350a1f4a1

View File

@ -818,7 +818,7 @@ map_act = {
m = b%32; b = (b-m)/32
local nb = b%2; b = (b-nb)/2
if nb == 0 then ctx.rexb = true end
local nx = b%2; b = (b-nx)/2
local nx = b%2
if nx == 0 then ctx.rexx = true end
b = byte(ctx.code, pos, pos)
if not b then return incomplete(ctx) end