From 5ae32dd036aded517aea69ce265b40efe90df656 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sun, 6 Sep 2015 00:13:44 -0400 Subject: [PATCH] CLI2: 'info' was tagged 'DEFAULT' and should have been 'ASSUMED' --- src/CLI2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CLI2.cpp b/src/CLI2.cpp index 1d10e93a4..df11b0377 100644 --- a/src/CLI2.cpp +++ b/src/CLI2.cpp @@ -1965,7 +1965,7 @@ void CLI2::defaultCommand () else { A2 info ("information", Lexer::Type::word); - info.tag ("DEFAULT"); + info.tag ("ASSUMED"); _args.push_back (info); changes = true; }