From 179f60ed8d17c66d8eb0a24fba457ec28f81e01e Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Tue, 19 May 2009 19:31:26 -0400 Subject: [PATCH] Bug Fix - _forcecolor considered obsolete - Fixed bug that considered the _forcecolor configuration variable to be obsolete. Thanks to Bruce Dillahunty. --- src/command.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/command.cpp b/src/command.cpp index 4a89427e1..41e8c6530 100644 --- a/src/command.cpp +++ b/src/command.cpp @@ -362,7 +362,7 @@ std::string handleVersion (Config& conf) // This configuration variable is supported, but not documented. It exists // so that unit tests can force color to be on even when the output from task // is redirected to a file, or stdout is not a tty. - recognized += " _forcecolor"; + recognized += "_forcecolor "; std::vector unrecognized; foreach (i, all)