This is the mail archive of the gcc-patches@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]

diagnostic.c: Fix word wrap


The word wrap of output from my patch of a couple of days ago is wrong
and annoying, so I'm going to commit this under the obvious rule.

I've checked diagnostic.c compiles.

Neil.

	* diagnostic.c (fatal): Fix word wrap.

Index: diagnostic.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/diagnostic.c,v
retrieving revision 1.48
diff -u -p -r1.48 diagnostic.c
--- diagnostic.c	2001/01/25 07:39:50	1.48
+++ diagnostic.c	2001/01/30 23:43:45
@@ -1432,8 +1432,8 @@ fatal VPARAMS ((const char *msgid, ...))
   report_diagnostic (&dc);
   va_end (ap);
 
-  fprintf (stderr, "Please submit a full bug report, with preprocessed source\n");
-  fprintf (stderr, "if appropriate.  See %s for instructions.\n", GCCBUGURL);
+  fprintf (stderr, "Please submit a full bug report, with preprocessed source if appropriate.\n");
+  fprintf (stderr, "See %s for instructions.\n", GCCBUGURL);
   exit (FATAL_EXIT_CODE);
 }
 

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