- Found another case where an empty verbosity token list was being examined.
This commit is contained in:
Paul Beckingham 2014-05-21 20:22:38 -04:00
parent ad0c349684
commit 5f143bee49

View file

@ -533,7 +533,8 @@ bool Context::verbose (const std::string& token)
return true; return true;
// rc.verbose=nothing overrides all. // rc.verbose=nothing overrides all.
if (verbosity[0] == "nothing") if (verbosity.size () == 1 &&
verbosity[0] == "nothing")
return false; return false;
// Specific token match. // Specific token match.