This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Extraneous newline emitted between error messages in GCC 6


GCC 6, compared to GCC 5, now emits an extra newline between error
messages.  Is this intended?

$ cat error.c
int x = a;
int y = b;
$ gcc-5 error.c
error.c:1:9: error: âaâ undeclared here (not in a function)
 int x = a;
         ^
error.c:2:9: error: âbâ undeclared here (not in a function)
 int y = b;
         ^
$ gcc-6 error.c
error.c:1:9: error: âaâ undeclared here (not in a function)
 int x = a;
         ^

error.c:2:9: error: âbâ undeclared here (not in a function)
 int y = b;
         ^

$


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]