Comments
Patch
===================================================================
@@ -1,5 +1,11 @@
2012-02-17 Tobias Burnus <burnus@net-b.de>
+ Roland Stigge <stigge@antcom.de>
+ PR translation/52273
+ * interface.c (compare_actual_formal): Fix typo "at at".
+
+2012-02-17 Tobias Burnus <burnus@net-b.de>
+
* gfortran.texi (Q exponent-letter): Fix grammar.
2012-02-17 Tobias Burnus <burnus@net-b.de>
===================================================================
@@ -2429,7 +2429,7 @@ compare_actual_formal (gfc_actual_arglist **ap, gf
{
if (where)
gfc_error ("Coindexed ASYNCHRONOUS or VOLATILE actual argument at "
- "at %L requires that dummy '%s' has neither "
+ "%L requires that dummy '%s' has neither "
"ASYNCHRONOUS nor VOLATILE", &a->expr->where,
f->sym->name);
return 0;
I missed one issue because it was in the bug summary while the bug description ("also in the same line") mentioned a different bug. The attached patch now fixes also the bug of the summary. (Rev. 184334.) Note to self: Read bug descriptions more carefully and also read the summary line. Tobias