OSDN Git Service

* diagnostic.c (fatal): Fix word wrap.
authorneil <neil@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 30 Jan 2001 23:47:33 +0000 (23:47 +0000)
committerneil <neil@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 30 Jan 2001 23:47:33 +0000 (23:47 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@39356 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/diagnostic.c

index abc7141..1048840 100644 (file)
@@ -1,3 +1,7 @@
+2001-01-30  Neil Booth  <neil@daikokuya.demon.co.uk>
+
+       * diagnostic.c (fatal): Fix word wrap.
+
 2001-01-30  Alexandre Oliva  <aoliva@redhat.com>
 
        * combine.c (try_combine): Fix SUBREG setting for
index 43439f6..9a99480 100644 (file)
@@ -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);
 }