summaryrefslogtreecommitdiff
path: root/gcc/fortran/match.c
diff options
context:
space:
mode:
authorTobias Burnus <burnus@net-b.de>2012-02-17 11:51:10 +0100
committerTobias Burnus <burnus@gcc.gnu.org>2012-02-17 11:51:10 +0100
commit0c133211da84ca416cbb02d4a48b1597e6db8077 (patch)
treead8fdc2ad0d9a5e02c6d98ba0db7ba2dcc281920 /gcc/fortran/match.c
parent459e2649e4257c56662f5c232d49fdeef5f7bc3b (diff)
downloadgcc-0c133211da84ca416cbb02d4a48b1597e6db8077.tar.gz
re PR translation/52232 (translatable string typos: "conindexed" (should be "coindexed"))
2012-02-17 Tobias Burnus <burnus@net-b.de> Roland Stigge <stigge@antcom.de> PR translation/52232 PR translation/52234 PR translation/52245 PR translation/52246 PR translation/52262 PR translation/52273 * io.c (gfc_match_open): Fix typo. * interface.c (compare_actual_formal): Ditto. * lang.opt (freal-4-real-8, freal-4-real-16, freal-8-real-16): * Ditto. * match.c (alloc_opt_list, gfc_match_nullify): Ditto. * check.c (gfc_check_associated, gfc_check_null): Ditto. 2012-02-17 Tobias Burnus <burnus@net-b.de> PR translation/52232 PR translation/52234 PR translation/52245 PR translation/52246 PR translation/52262 PR translation/52273 * gfortran.dg/coarray_22.f90: Update dg-error. * gfortran.dg/allocate_alloc_opt_4.f90: Ditto. Co-Authored-By: Roland Stigge <stigge@antcom.de> From-SVN: r184331
Diffstat (limited to 'gcc/fortran/match.c')
-rw-r--r--gcc/fortran/match.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/fortran/match.c b/gcc/fortran/match.c
index 89b59bc8036..14381608c90 100644
--- a/gcc/fortran/match.c
+++ b/gcc/fortran/match.c
@@ -3661,7 +3661,7 @@ alloc_opt_list:
if (head->next
&& gfc_notify_std (GFC_STD_F2008, "Fortran 2008: SOURCE tag at %L"
- " with more than a single allocate objects",
+ " with more than a single allocate object",
&tmp->where) == FAILURE)
goto cleanup;
@@ -3787,7 +3787,7 @@ gfc_match_nullify (void)
/* F2008, C1242. */
if (gfc_is_coindexed (p))
{
- gfc_error ("Pointer object at %C shall not be conindexed");
+ gfc_error ("Pointer object at %C shall not be coindexed");
goto cleanup;
}