Color: Removed FEATURE_COLOR conditional compile

- No need any more.
This commit is contained in:
Paul Beckingham 2015-09-10 22:17:25 -04:00
parent b04032c9d6
commit f55afe33d7
5 changed files with 0 additions and 43 deletions

View file

@ -467,7 +467,6 @@ int Context::dispatch (std::string &out)
////////////////////////////////////////////////////////////////////////////////
bool Context::color ()
{
#ifdef FEATURE_COLOR
if (determine_color_use)
{
// What the config says.
@ -497,9 +496,6 @@ bool Context::color ()
// Cached result.
return use_color;
#else
return false;
#endif
}
////////////////////////////////////////////////////////////////////////////////