From 632cb3e194d6f966eec7e14da7abad57c2c85f61 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Tue, 14 Oct 2014 00:59:33 -0400 Subject: [PATCH] Context - Now calls aliasExpansion and categorization. --- src/Context.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Context.cpp b/src/Context.cpp index fb1cf019d..97a4c3de3 100644 --- a/src/Context.cpp +++ b/src/Context.cpp @@ -243,6 +243,8 @@ int Context::initialize (int argc, const char** argv) } // Now the entities are loaded, parsing may resume. + cli.aliasExpansion (); + parser.findBinary (); // parser.resolveAliases (); parser.findCommand (); // @@ -252,6 +254,7 @@ int Context::initialize (int argc, const char** argv) staticInitialization (); // Decouple code from Context. parser.parse (); // Parse all elements. + cli.categorize (); // Parse high-level elements. tdb2.set_location (data_dir); // Prepare the task database.