From fcc1bb3ef2e1e095d4f62c33f295c6ac24f45cdc Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Mon, 22 Jun 2015 11:09:49 -0400 Subject: [PATCH] CLI2: Fixed bug where ::desugarFilterAttributes set 'name' instead of 'canonical' --- src/CLI2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CLI2.cpp b/src/CLI2.cpp index 05c5e8cd8..3d156a572 100644 --- a/src/CLI2.cpp +++ b/src/CLI2.cpp @@ -958,7 +958,7 @@ void CLI2::desugarFilterAttributes () A2 lhs (name, Lexer::Type::dom); lhs.tag ("FILTER"); - lhs.attribute ("name", canonical); + lhs.attribute ("canonical", canonical); lhs.attribute ("modifier", mod); A2 op ("", Lexer::Type::op);