re PR other/11123 (Some option names are truncated in gcc --help -v)
authorNathanael Nerode <neroden@gcc.gnu.org>
Sun, 13 Jul 2003 20:31:33 +0000 (20:31 +0000)
committerNathanael Nerode <neroden@gcc.gnu.org>
Sun, 13 Jul 2003 20:31:33 +0000 (20:31 +0000)
PR other/11123
* toplev.c: Don't cut off option names.

From-SVN: r69303

gcc/ChangeLog
gcc/toplev.c

index 59dad2c76b6251f7598ee474b4bb855422bcc886..bcb840c4448b3c9b7b676b94192037238727c169 100644 (file)
@@ -1,3 +1,8 @@
+2003-07-13  Nathanael Nerode  <neroden@gcc.gnu.org>
+
+       PR other/11123
+       * toplev.c: Don't cut off option names.
+
 2003-07-13  Andreas Jaeger  <aj@suse.de>
 
        * c-decl.c (link_hash_hash): Avoid warning about casting pointer
index da18f92885426f2ce56a4a0b1ae3cd4f3cb82ee0..adb4fffe042438909c64d1a02a3745a88189caf6 100644 (file)
@@ -3818,7 +3818,7 @@ display_help (void)
              undoc = 1;
 
              if (extra_warnings)
-               printf (_("  %-23.23s [undocumented]\n"), option);
+               printf (_("  %-23s [undocumented]\n"), option);
            }
          else if (*description == 0)
            continue;
@@ -3835,7 +3835,7 @@ display_help (void)
              lang = description;
            }
          else
-           printf ("  %-23.23s %s\n", option, _(description));
+           printf ("  %-23s %s\n", option, _(description));
        }
     }
 
@@ -3883,10 +3883,10 @@ display_target_options (void)
              undoc = 1;
 
              if (extra_warnings)
-               printf (_("  -m%-23.23s [undocumented]\n"), option);
+               printf (_("  -m%-23s [undocumented]\n"), option);
            }
          else if (*description != 0)
-           doc += printf ("  -m%-23.23s %s\n", option, _(description));
+           doc += printf ("  -m%-23s %s\n", option, _(description));
        }
 
 #ifdef TARGET_OPTIONS
@@ -3902,10 +3902,10 @@ display_target_options (void)
              undoc = 1;
 
              if (extra_warnings)
-               printf (_("  -m%-23.23s [undocumented]\n"), option);
+               printf (_("  -m%-23s [undocumented]\n"), option);
            }
          else if (*description != 0)
-           doc += printf ("  -m%-23.23s %s\n", option, _(description));
+           doc += printf ("  -m%-23s %s\n", option, _(description));
        }
 #endif
       if (undoc)