No. We will not be outputting BLACK text. No.

This commit is contained in:
Ryan Curtin
2010-09-02 17:30:33 +00:00
parent ee3e9d06ad
commit 38176998dc
2 changed files with 3 additions and 3 deletions
@@ -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"));
}
};
@@ -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');