From 3d19bffd55bb1f987eb524eef7ed79b5daaee842 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Mon, 22 Jun 2015 14:12:05 -0400 Subject: [PATCH] CLI2: Raised the precedence of ::desugarPlainArgs --- src/CLI2.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/CLI2.cpp b/src/CLI2.cpp index fe28203cc..6297b0fe4 100644 --- a/src/CLI2.cpp +++ b/src/CLI2.cpp @@ -481,7 +481,7 @@ void CLI2::addFilter (const std::string& arg) } //////////////////////////////////////////////////////////////////////////////// -// Parset the commnad line, identifiying filter components, expanding syntactic +// Parse the command line, identifiying filter components, expanding syntactic // sugar as necessary. void CLI2::prepareFilter (bool applyContext) { @@ -528,9 +528,9 @@ void CLI2::prepareFilter (bool applyContext) findIDs (); findUUIDs (); insertIDExpr (); - desugarFilterPlainArgs (); desugarFilterTags (); findStrayModifications (); + desugarFilterPlainArgs (); desugarFilterAttributes (); desugarFilterPatterns (); insertJunctions (); // Deliberately after all desugar calls.