From: Vsevolod Stakhov Date: Mon, 17 Sep 2018 14:36:41 +0000 (+0100) Subject: [Minor] Allow spaces and stars as separators in selectors X-Git-Tag: 1.8.0~88 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c3b4921c3696fb9055cbb4f3f080aec7a4ca5984;p=thirdparty%2Frspamd.git [Minor] Allow spaces and stars as separators in selectors --- diff --git a/lualib/lua_selectors.lua b/lualib/lua_selectors.lua index 3a7a3207f2..2e0e593327 100644 --- a/lualib/lua_selectors.lua +++ b/lualib/lua_selectors.lua @@ -657,7 +657,7 @@ local function make_grammar() local obrace = "(" * spc local ebrace = spc * ")" local comma = spc * "," * spc - local sel_separator = l.S":;" + local sel_separator = spc * l.S":;*" * spc return l.P{ "LIST";