From 283cae5e8c17dc26dd0ddb06daa42a9f26dbc229 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sat, 8 Nov 2014 14:35:24 -0500 Subject: [PATCH] CLI - The ::categorize method now only allows one TERMINATOR - the first one. --- src/CLI.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CLI.cpp b/src/CLI.cpp index 1ee6d446d..207e7acdb 100644 --- a/src/CLI.cpp +++ b/src/CLI.cpp @@ -761,7 +761,7 @@ void CLI::categorize () { std::string raw = a->attribute ("raw"); - if (raw == "--") + if (! terminated && raw == "--") { a->tag ("ORIGINAL"); a->tag ("TERMINATOR");