From 360cb50c9e9420da4cd591e37c82747976e1a987 Mon Sep 17 00:00:00 2001 From: "Alexander A. Klimov" Date: Wed, 28 Aug 2019 11:44:55 +0200 Subject: [PATCH] Config parser: inline arraysep --- lib/config/config_parser.yy | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/lib/config/config_parser.yy b/lib/config/config_parser.yy index c8e3b5d3a..353c072f3 100644 --- a/lib/config/config_parser.yy +++ b/lib/config/config_parser.yy @@ -691,10 +691,10 @@ rterm_items_inner: rterm $$ = new std::vector >(); $$->emplace_back($1); } - | rterm_items_inner arraysep rterm + | rterm_items_inner ',' optional_newlines rterm { $$ = $1; - $$->emplace_back($3); + $$->emplace_back($4); } ; @@ -1232,7 +1232,4 @@ sep: ',' optional_newlines | newlines ; -arraysep: ',' optional_newlines - ; - %%