Code Cleanup

- With the separation between standard output and standard error, the solution
  for bug #956 is obsolete. The mechanism (putting verbose to "nothing") is
  still kept for easing the management of the standard error.
This commit is contained in:
Louis-Claude Canon 2012-06-16 17:36:33 +02:00 committed by Paul Beckingham
parent 1e632fea66
commit c84e3cc893
2 changed files with 4 additions and 9 deletions

View file

@ -694,16 +694,13 @@ void Context::updateXtermTitle ()
}
////////////////////////////////////////////////////////////////////////////////
// This function allows a clean output if the command is a helper subcommand or
// a command aimed at being used by an external script.
// This function allows a clean output if the command is a helper subcommand.
void Context::updateVerbosity ()
{
std::string command;
a3.find_command (command);
if (command[0] == '_' ||
command == "ids" ||
command == "uuids")
if (command[0] == '_')
{
verbosity.clear ();
verbosity.push_back ("nothing");