diff options
| author | Brooks Moses <brooks.moses@codesourcery.com> | 2006-11-16 03:05:28 +0000 |
|---|---|---|
| committer | Brooks Moses <brooks@gcc.gnu.org> | 2006-11-15 19:05:28 -0800 |
| commit | e25a0da328d0e998674c670724d5fb361f81ebae (patch) | |
| tree | d6fed4e42fc794f83d5aac91cc3162c7af15dc86 /gcc/fortran/options.c | |
| parent | 10612ddf52a0ff87a4d044be62de463dc0730b9a (diff) | |
| download | gcc-e25a0da328d0e998674c670724d5fb361f81ebae.zip gcc-e25a0da328d0e998674c670724d5fb361f81ebae.tar.gz gcc-e25a0da328d0e998674c670724d5fb361f81ebae.tar.bz2 | |
data.c: Remove trailing periods from error messages.
* data.c: Remove trailing periods from error messages.
* decl.c: Likewise.
* expr.c: Likewise.
* io.c: Likewise.
* match.c: Likewise.
* module.c: Likewise.
* options.c: Likewise.
* resolve.c: Likewise.
* symbol.c: Likewise.
* trans-io.c: Likewise.
From-SVN: r118880
Diffstat (limited to 'gcc/fortran/options.c')
| -rw-r--r-- | gcc/fortran/options.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/fortran/options.c b/gcc/fortran/options.c index 6afcaa4..a814910 100644 --- a/gcc/fortran/options.c +++ b/gcc/fortran/options.c @@ -236,7 +236,7 @@ gfc_post_options (const char **pfilename) if (gfc_current_form == FORM_UNKNOWN) { gfc_current_form = FORM_FREE; - gfc_warning_now ("Reading file '%s' as free form.", + gfc_warning_now ("Reading file '%s' as free form", (filename[0] == '\0') ? "<stdin>" : filename); } } @@ -247,10 +247,10 @@ gfc_post_options (const char **pfilename) { if (gfc_option.flag_d_lines == 0) gfc_warning_now ("'-fd-lines-as-comments' has no effect " - "in free form."); + "in free form"); else if (gfc_option.flag_d_lines == 1) gfc_warning_now ("'-fd-lines-as-code' has no effect " - "in free form."); + "in free form"); } flag_inline_trees = 1; |
