From: Tobias Burnus Date: Sun, 23 Nov 2014 20:35:14 +0000 (+0100) Subject: error.c (gfc_diagnostic_build_prefix): Correct coloring of the colon of the prefix. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=bc1b9ef1515041e06190f8833719334be27f82b3;p=gcc.git error.c (gfc_diagnostic_build_prefix): Correct coloring of the colon of the prefix. 2014-11-23 Tobias Burnus * error.c (gfc_diagnostic_build_prefix): Correct coloring of the colon of the prefix. From-SVN: r217986 --- diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index ddccf96e72c..12ec7e21e1c 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,8 @@ +2014-11-23 Tobias Burnus + + * error.c (gfc_diagnostic_build_prefix): Correct coloring + of the colon of the prefix. + 2014-11-23 Tobias Burnus Manuel López-Ibáñez diff --git a/gcc/fortran/error.c b/gcc/fortran/error.c index 3a508fa693e..0f85b496ecf 100644 --- a/gcc/fortran/error.c +++ b/gcc/fortran/error.c @@ -1021,7 +1021,7 @@ gfc_diagnostic_build_prefix (diagnostic_context *context, diagnostic_kind_color[diagnostic->kind]); text_ce = colorize_stop (pp_show_color (pp)); } - return build_message_string ("%s%s%s: ", text_cs, text, text_ce); + return build_message_string ("%s%s:%s ", text_cs, text, text_ce); } /* Return a malloc'd string describing a location. The caller is