From 1884223a2ed348d11c04484421bac0e3edccc1a5 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sun, 31 Jul 2011 11:18:16 -0400 Subject: [PATCH] Arguments - rc:___ and rc.___ arguments are no longer propagated to commands that modify tasks. --- src/A3.cpp | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/A3.cpp b/src/A3.cpp index 10816da7a..4b33fe5c1 100644 --- a/src/A3.cpp +++ b/src/A3.cpp @@ -588,7 +588,13 @@ const A3 A3::extract_modifications () const before_command = false; else if (! before_command) - mods.push_back (*arg); + { + if (arg->_category == "rc" || + arg->_category == "override") + ; + else + mods.push_back (*arg); + } } mods = tokenize (mods);