From fa02eb4ed29da8b54ec622777b1dec854efa8eba Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sun, 25 May 2014 14:38:51 -0400 Subject: [PATCH] CmdCustom - Eliminated A3. --- src/commands/CmdCustom.cpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/commands/CmdCustom.cpp b/src/commands/CmdCustom.cpp index 5b0808032..4fe3e16d5 100644 --- a/src/commands/CmdCustom.cpp +++ b/src/commands/CmdCustom.cpp @@ -89,17 +89,13 @@ int CmdCustom::execute (std::string& output) std::vector ::reverse_iterator arg; for (arg = filterArgs.rbegin (); arg != filterArgs.rend (); ++ arg) { - // TODO Obsolete, but for now prevents 'operator mismatch' errors. - context.a3.capture_first (*arg); - Tree* t = context.parser.captureFirst (*arg); t->tag ("CUSTOM"); t->tag ("FILTER"); } - // TODO Obsolete, but for now prevents 'operator mismatch' errors.. + // Reparse after tree change. context.parser.parse (); - context.a3.categorize (); // Apply filter. handleRecurrence ();