From 38176998dcafe1b9590386e699e3ee6b1af4bd59 Mon Sep 17 00:00:00 2001 From: Ryan Curtin Date: Thu, 2 Sep 2010 17:30:33 +0000 Subject: [PATCH] No. We will not be outputting BLACK text. No. --- fastlib/branches/fastlib-stl/fastlib/base/cc.cc | 4 ++-- fastlib/branches/fastlib-stl/fastlib/base/common.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/fastlib/branches/fastlib-stl/fastlib/base/cc.cc b/fastlib/branches/fastlib-stl/fastlib/base/cc.cc index 2213f421c5..72fbc46676 100644 --- a/fastlib/branches/fastlib-stl/fastlib/base/cc.cc +++ b/fastlib/branches/fastlib-stl/fastlib/base/cc.cc @@ -55,13 +55,13 @@ namespace cc__private { PROFILE_ONLY(NOTIFY_STAR("Profiling information available with:\n")); PROFILE_ONLY(NOTIFY_STAR(" gprof $THIS > prof.out && less prof.out\n")); DEBUG_ONLY(NOTIFY_STAR( - ANSI_BLACK"Program compiled with debug checks."ANSI_CLEAR"\n")); + "Program compiled with debug checks.\n")); } ~InformDebug() { PROFILE_ONLY(NOTIFY_STAR("Profiling information available with:\n")); PROFILE_ONLY(NOTIFY_STAR(" gprof $THIS > prof.out && less prof.out\n")); DEBUG_ONLY(NOTIFY_STAR( - ANSI_BLACK"Program compiled with debug checks."ANSI_CLEAR"\n")); + "Program compiled with debug checks.\n")); } }; diff --git a/fastlib/branches/fastlib-stl/fastlib/base/common.c b/fastlib/branches/fastlib-stl/fastlib/base/common.c index d2c15bdd40..18cb467e61 100644 --- a/fastlib/branches/fastlib-stl/fastlib/base/common.c +++ b/fastlib/branches/fastlib-stl/fastlib/base/common.c @@ -63,7 +63,7 @@ void fl_pause(void) if (isatty(0)) { char c; - fprintf(stderr, ANSI_HBLACK"Press Return to continue..."ANSI_CLEAR); + fprintf(stderr, "Press Return to continue..."); fflush(stderr); while ((c = getchar()) != EOF && c != '\n');