This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
[PATCH,committed] Remove an 'is' in a Fortran error message.
- From: Steve Kargl <sgk at troutmask dot apl dot washington dot edu>
- To: fortran at gcc dot gnu dot org, gcc-patches at gcc dot gnu dot org
- Date: Tue, 20 Apr 2010 14:31:27 -0700
- Subject: [PATCH,committed] Remove an 'is' in a Fortran error message.
I've committed the patch to 4.4, 4.5, and trunk.
Hopefully, it's self explanatory.
2010-04-20 Harald Anlauf <anlauf@gmx.de>
* intrinsic.c (sort_actual): Remove 'is' in error message.
Index: intrinsic.c
===================================================================
--- intrinsic.c (revision 158576)
+++ intrinsic.c (working copy)
@@ -3292,7 +3292,7 @@ keywords:
if (f->actual != NULL)
{
- gfc_error ("Argument '%s' is appears twice in call to '%s' at %L",
+ gfc_error ("Argument '%s' appears twice in call to '%s' at %L",
f->name, name, where);
return FAILURE;
}
--
Steve