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:
committed by
Paul Beckingham
parent
1e632fea66
commit
c84e3cc893
@@ -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");
|
||||
|
||||
Reference in New Issue
Block a user