- Fixed problem where 'project' was not supported as a verbosity token (thanks
  to Adam Gibbins).
This commit is contained in:
Paul Beckingham 2012-03-17 10:11:55 -04:00
parent deb12102f6
commit 80d6655709
17 changed files with 35 additions and 17 deletions

View file

@ -452,7 +452,8 @@ bool Context::verbose (const std::string& token)
verbosity[0] != "new-id" && //
verbosity[0] != "affected" && //
verbosity[0] != "edit" && //
verbosity[0] != "special") //
verbosity[0] != "special" && //
verbosity[0] != "project") //
{
verbosity.clear ();
@ -464,6 +465,7 @@ bool Context::verbose (const std::string& token)
verbosity.push_back ("affected");
verbosity.push_back ("edit");
verbosity.push_back ("special");
verbosity.push_back ("project");
}
}