From 29b3b744ef01b30118daa9568fe0e8adaa86ef1b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Villemot?= <sebastien@dynare.org> Date: Fri, 26 Feb 2021 12:28:06 +0100 Subject: [PATCH] Remove spurious space produced when parsing key/value pairs Introduced in e46168db66eade59771412a5805b74339343d631. --- src/DynareBison.yy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/DynareBison.yy b/src/DynareBison.yy index f16ae323..254ee7fa 100644 --- a/src/DynareBison.yy +++ b/src/DynareBison.yy @@ -2018,7 +2018,7 @@ estimation_options : o_datafile ; name_value_pair : QUOTED_STRING COMMA QUOTED_STRING - { $$ = "''" + $1 + "'', ''" + $3 + "''"; } + { $$ = "''" + $1 + "'',''" + $3 + "''"; } | QUOTED_STRING COMMA signed_number { $$ = "''" + $1 + "''," + $3; } ; -- GitLab