From ce2679c3fa4753926b49dbceacf4152f04e58c01 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Fri, 24 Oct 2014 16:24:35 -0400 Subject: [PATCH] CLI - Properly tags TERMINATOR, TERMINATED. --- src/CLI.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/CLI.cpp b/src/CLI.cpp index 3ce0e7db5..7109a9022 100644 --- a/src/CLI.cpp +++ b/src/CLI.cpp @@ -499,11 +499,12 @@ void CLI::categorize () if (raw == "--") { + a->unTagAll (); a->tag ("TERMINATOR"); terminated = true; } - if (terminated) + else if (terminated) { a->unTagAll (); a->tag ("TERMINATED");