From dd7a9e32dbfb39f1eacd1c84038d428ce591ed84 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Mon, 10 Nov 2014 22:53:33 -0500 Subject: [PATCH] Context - Improved command line feedback. --- src/Context.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/Context.cpp b/src/Context.cpp index f85097b72..a914d482b 100644 --- a/src/Context.cpp +++ b/src/Context.cpp @@ -255,7 +255,10 @@ int Context::initialize (int argc, const char** argv) if (combined.length ()) combined += ' '; - combined += a->attribute ("raw"); + if (a->attribute ("canonical") != "") + combined += a->attribute ("canonical"); + else + combined += a->attribute ("raw"); if (a->hasTag ("DEFAULT")) foundDefault = true;