From 7ff55037a63bd8ed15515b4c185b2925cdb677b8 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sat, 25 Oct 2014 13:16:31 -0400 Subject: [PATCH] CLI - Tagged expanded aliases with ALIAS. --- src/CLI.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/CLI.cpp b/src/CLI.cpp index ab0a3fa8f..4606c68b7 100644 --- a/src/CLI.cpp +++ b/src/CLI.cpp @@ -431,6 +431,7 @@ void CLI::aliasExpansion () for (l = lexed.begin (); l != lexed.end (); ++l) { A a ("argLex", *l); + a.tag ("ALIAS"); a.tag ("LEX"); reconstructed.push_back (a); }