From f5e5793cd2f32bc0f0d072b38cda742830f40f25 Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Mon, 6 Jan 2014 13:53:57 -0500 Subject: [PATCH] Bare dynamic attrs: Match interpolation semantics Signed-off-by: Shea Levy --- src/libexpr/parser.y | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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