From ae3257b623dc15496ab6bc4e5151bf88ca01df00 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Thu, 18 Jun 2009 18:37:53 -0400 Subject: [PATCH] Bug Fix - tags report using std::cout - The tags report was writing directly to std::cout, therefore bypassing the header/footer control. --- src/command.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/command.cpp b/src/command.cpp index e6601fa30..5a30dce7a 100644 --- a/src/command.cpp +++ b/src/command.cpp @@ -175,9 +175,9 @@ std::string handleTags () } // Render a list of tag names from the map. - std::cout << optionalBlankLine (); + out << optionalBlankLine (); foreach (i, unique) - std::cout << i->first << std::endl; + out << i->first << std::endl; if (unique.size ()) out << optionalBlankLine ()