[GENERAL] Error messages now no longer make terminal color green

This commit is contained in:
Philippe Tillet
2020-04-03 23:25:29 -04:00
parent 7c09ff80eb
commit e04efc1c85
5 changed files with 6 additions and 7 deletions

View File

@@ -62,7 +62,7 @@ static void VError(const SourceLocation& loc,
fprintf(stderr, "\n ");
for (unsigned i = 1; i + nspaces < loc.column_; ++i)
fputc(' ', stderr);
fprintf(stderr, ANSI_COLOR_GREEN "^\n");
fprintf(stderr, "^\n");
exit(-1);
}