# HG changeset patch # User Kim Alvefur # Date 1512177126 -3600 # Node ID 3a390fa561bf94abd36fa167ed24a19b4e5bb4b9 # Parent e6e69be5923324d875769aaeda95f79f6738f56d net.websocket.frames: Ignore Lua 5.3-only fields [luacheck] diff -r e6e69be59233 -r 3a390fa561bf net/websocket/frames.lua --- a/net/websocket/frames.lua Fri Dec 01 05:13:28 2017 +0100 +++ b/net/websocket/frames.lua Sat Dec 02 02:12:06 2017 +0100 @@ -21,8 +21,8 @@ local s_byte = string.byte; local s_char= string.char; local s_sub = string.sub; -local s_pack = string.pack; -local s_unpack = string.unpack; +local s_pack = string.pack; -- luacheck: ignore 143 +local s_unpack = string.unpack; -- luacheck: ignore 143 if not s_pack and softreq"struct" then s_pack = softreq"struct".pack;