]> source.dussan.org Git - rspamd.git/commitdiff
[Minor] Pet luacheck
authorVsevolod Stakhov <vsevolod@highsecure.ru>
Thu, 5 Sep 2019 17:10:26 +0000 (18:10 +0100)
committerVsevolod Stakhov <vsevolod@highsecure.ru>
Thu, 5 Sep 2019 17:10:26 +0000 (18:10 +0100)
lualib/lua_lexer.lua

index 8c751d82f3ef17e9c9fd5615a7e823dc216ee2b4..8ce803d5974f2d2d5eb0cc11dbf64d62ade62170 100644 (file)
@@ -25,7 +25,6 @@ local S = lpeg.S
 local D = R'09' -- Digits
 local I = R('AZ', 'az', '\127\255') + '_' -- Identifiers
 local B = -(I + D) -- Word boundary
-local SOS = lpeg.P(function(s, i) return i == 1 end) -- start of string
 local EOS = -lpeg.P(1) -- end of string
 
 -- Pattern for long strings and long comments.