From 96d2acef42ad643d9be358158f2efc5eb13d1100 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Tue, 12 Oct 2010 23:24:48 -0400 Subject: [PATCH] Feature #499 - Relocated change to inside the Permission object, thus making the change smaller. --- src/Permission.cpp | 2 ++ src/command.cpp | 2 -- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Permission.cpp b/src/Permission.cpp index f9e399911..1c77a910a 100644 --- a/src/Permission.cpp +++ b/src/Permission.cpp @@ -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; diff --git a/src/command.cpp b/src/command.cpp index 996cc0bd2..48ce4262c 100644 --- a/src/command.cpp +++ b/src/command.cpp @@ -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"); }