From: Nick Clifton Date: Tue, 19 Feb 2008 14:15:36 +0000 (+0000) Subject: * opts.c (print_specific_help): Fix typo in --help text. X-Git-Tag: releases/gcc-4.4.0~6416 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c01c261df2555ab9b4bd979a18dc4807f76263be;p=thirdparty%2Fgcc.git * opts.c (print_specific_help): Fix typo in --help text. From-SVN: r132432 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 97587c7321ac..056eacfff743 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2008-02-19 Nick Clifton + + * opts.c (print_specific_help): Fix typo in --help text. + 2008-02-19 Jakub Jelinek PR target/35239 diff --git a/gcc/opts.c b/gcc/opts.c index f2eea7dcf7ed..96643ef48fa8 100644 --- a/gcc/opts.c +++ b/gcc/opts.c @@ -1264,7 +1264,7 @@ print_specific_help (unsigned int include_flags, if (i >= cl_lang_count) break; if ((exclude_flags & ((1U << cl_lang_count) - 1)) != 0) - description = _("The following options are specific to the just the language "); + description = _("The following options are specific to just the language "); else description = _("The following options are supported by the language "); descrip_extra = lang_names [i];