diff --git a/src/libexpr/parser.y b/src/libexpr/parser.y index 2305843882..55a42fcaba 100644 --- a/src/libexpr/parser.y +++ b/src/libexpr/parser.y @@ -509,7 +509,7 @@ attr string_attr : '"' string_parts '"' { $$ = $2; } - | DOLLAR_CURLY expr '}' { $$ = $2; } + | DOLLAR_CURLY expr '}' { $$ = new ExprConcatStrings(true, new vector(1, $2)); } ; expr_list