From 148088c7751fe9d448dd31fbbc6d6357a2f758ac Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sat, 24 May 2008 23:32:29 -0400 Subject: [PATCH] - Removed overwriting of colors in autoColorize. --- src/rules.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/rules.cpp b/src/rules.cpp index aff147667..bd14f7fbd 100644 --- a/src/rules.cpp +++ b/src/rules.cpp @@ -60,8 +60,7 @@ void initializeColorRules (Config& conf) //////////////////////////////////////////////////////////////////////////////// void autoColorize (T& task, Text::color& fg, Text::color& bg) { - fg = Text::nocolor; - bg = Text::nocolor; + // Note: fg, bg already contain colors specifically assigned via command. // Colorization of the tagged. if (gsFg["color.tagged"] != Text::nocolor ||