diff options
author | Gabriel Dos Reis <gdr@codesourcery.com> | 2000-09-06 18:43:35 +0000 |
---|---|---|
committer | Gabriel Dos Reis <gdr@gcc.gnu.org> | 2000-09-06 18:43:35 +0000 |
commit | e65130238972b658dabb12bf569e5ed8dd316948 (patch) | |
tree | 16f3efac73c54ac9d4bfcc86c3e390ff99b00405 /gcc/toplev.c | |
parent | 112c7aeab151b463751a3b7ea085f4080c7ce83a (diff) | |
download | gcc-e65130238972b658dabb12bf569e5ed8dd316948.zip gcc-e65130238972b658dabb12bf569e5ed8dd316948.tar.gz gcc-e65130238972b658dabb12bf569e5ed8dd316948.tar.bz2 |
toplev.c (display_help): Fix thinko in documentation.
* toplev.c (display_help): Fix thinko in documentation.
* diagnostic.h (output_buffer::indent_skip): New fields.
(output_indentation): New macro.
* diagnostic.c (output_indent): New function.
(output_set_prefix, clear_diagnostic_info): Use.
(output_emit_prefix): Predict future indentation.
From-SVN: r36205
Diffstat (limited to 'gcc/toplev.c')
-rw-r--r-- | gcc/toplev.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/toplev.c b/gcc/toplev.c index 20c6385..d657d49 100644 --- a/gcc/toplev.c +++ b/gcc/toplev.c @@ -3774,7 +3774,7 @@ display_help () printf (_(" -fcall-saved-<register> Mark <register> as being preserved across functions\n")); printf (_(" -finline-limit=<number> Limits the size of inlined functions to <number>\n")); printf (_(" -fmessage-length=<number> Limits diagnostics messages lengths to <number> characters per line. 0 suppresses line-wrapping\n")); - printf (_(" -fdiagnostics-show-location=[once | never] Indicates how often source location information should be emitted, as prefix, at the beginning of diagnostics when line-wrapping\n")); + printf (_(" -fdiagnostics-show-location=[once | every-line] Indicates how often source location information should be emitted, as prefix, at the beginning of diagnostics when line-wrapping\n")); for (i = ARRAY_SIZE (f_options); i--;) { |