From 0b212ad8bc72c65e3f3df509bc296553ffdd91aa Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Fri, 31 Oct 2014 23:39:02 -0400 Subject: [PATCH] CLI - Switched PSEUDO args to use 'canonical' instead of 'name'. --- src/CLI.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CLI.cpp b/src/CLI.cpp index 42041104b..34907c425 100644 --- a/src/CLI.cpp +++ b/src/CLI.cpp @@ -885,7 +885,7 @@ void CLI::desugarAttributes () else if (canonicalize (canonical, "pseudo", name)) { A lhs ("argPseudo", a->attribute ("raw")); - lhs.attribute ("name", canonical); + lhs.attribute ("canonical", canonical); lhs.attribute ("value", value); lhs.tag ("PSEUDO"); reconstructed.push_back (lhs);