invoke.texi (-fmessage-length=n): Document.
authorMark Mitchell <mark@codesourcery.com>
Thu, 17 Feb 2000 20:38:26 +0000 (20:38 +0000)
committerMark Mitchell <mmitchel@gcc.gnu.org>
Thu, 17 Feb 2000 20:38:26 +0000 (20:38 +0000)
* invoke.texi (-fmessage-length=n): Document.

* decl2.c (lang_decode_option): Don't set default message length
here.
* lex.c (lang_init_options): Set it here.

From-SVN: r32040

gcc/ChangeLog
gcc/cp/ChangeLog
gcc/cp/decl2.c
gcc/invoke.texi

index b0e93cdfa22282701a06590ee901e9571d1c7266..79503b724a639c6ddd350ee1a3e8ba51839af946 100644 (file)
@@ -1,3 +1,7 @@
+2000-02-17  Mark Mitchell  <mark@codesourcery.com>
+
+       * invoke.texi (-fmessage-length=n): Document.
+
 2000-02-17  Jason Merrill  <jason@casey.cygnus.com>
 
        * bitmap.c (bitmap_operation): Don't leak bitmap elements.
index 537630f6bea3f9f00e87e461d69c8bcfc4d12318..c4869a1df247a00cd2b662801504dd08df2592f9 100644 (file)
@@ -1,3 +1,9 @@
+2000-02-17  Mark Mitchell  <mark@codesourcery.com>
+
+       * decl2.c (lang_decode_option): Don't set default message length
+       here.
+       * lex.c (lang_init_options): Set it here.
+
 2000-02-16  Mark Mitchell  <mark@codesourcery.com>
 
        Make DECL_CONTEXT mean the class in which a member function was
index 245ec1fe1930ce5ec1ad9f7c9593e051ba0f1904..ff973e809342ea42bf59467c37b57b413e7374d9 100644 (file)
@@ -570,9 +570,6 @@ lang_decode_option (argc, argv)
   strings_processed = 0;
 #endif /* ! USE_CPPLIB */
 
-  /* Enable automatic line wrapping by default */
-  set_message_length (72);
-
   if (!strcmp (p, "-ftraditional") || !strcmp (p, "-traditional"))
     /* ignore */;
   else if (p[0] == '-' && p[1] == 'f')
@@ -636,9 +633,9 @@ lang_decode_option (argc, argv)
        name_mangling_version 
          = read_integral_parameter (p + 22, p - 2, name_mangling_version);
       else if (!strncmp (p, "message-length=", 15))
-          set_message_length
-              (read_integral_parameter (p + 15, p -2,
-                                        /* default line-wrap length */ 72));
+       set_message_length
+         (read_integral_parameter (p + 15, p - 2,
+                                   /* default line-wrap length */ 72));
       else if (!strncmp (p, "dump-translation-unit-", 22))
        {
          if (p[22] == '\0')
index f3a483cd75b44a8e647b87f9197f6b7d3dbfad50..ddd925a8755e6b1e32e923b8f6811005270f9966 100644 (file)
@@ -1130,6 +1130,12 @@ This flag is not useful when compiling with -fvtable-thunks.
 Like all options that change the ABI, all C++ code, @emph{including
 libgcc} must be built with the same setting of this option.
 
+@item -fmessage-length=@var{n}
+Try to format error messages so that they fit on lines of about @var{n}
+characters.  The deafult is 72 characters.  If @var{n} is zero, then to
+line-wrapping will be done; each error message will appear on a single
+line.
+
 @item -fno-implicit-templates
 Never emit code for non-inline templates which are instantiated
 implicitly (i.e. by use); only emit code for explicit instantiations.