- Relocated change to inside the Permission object, thus making the change
  smaller.
This commit is contained in:
Paul Beckingham 2010-10-12 23:24:48 -04:00
parent 0e1d12f5b1
commit 96d2acef42
2 changed files with 2 additions and 2 deletions

View file

@ -71,6 +71,8 @@ bool Permission::confirmed (const Task& task, const std::string& question)
std::cout << std::endl; // Flush.
int answer = confirm4 (question);
std::cout << "\n"; // #499
if (answer == 2)
allConfirmed = true;

View file

@ -1592,8 +1592,6 @@ int handleDone (std::string &outs)
<< " as done.\n";
outs = out.str ();
if (count > context.config.getInteger ("bulk"))
outs = "\n" + outs;
context.hooks.trigger ("post-done-command");
}