From patchwork Fri Feb 17 13:12:53 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tobias Burnus X-Patchwork-Id: 141815 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) by ozlabs.org (Postfix) with SMTP id 3DD82B6EEC for ; Sat, 18 Feb 2012 00:13:32 +1100 (EST) Comment: DKIM? See http://www.dkim.org DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=gcc.gnu.org; s=default; x=1330089214; h=Comment: DomainKey-Signature:Received:Received:Received:Received: Message-ID:Date:From:User-Agent:MIME-Version:To:Subject: References:In-Reply-To:Content-Type:Mailing-List:Precedence: List-Id:List-Unsubscribe:List-Archive:List-Post:List-Help:Sender: Delivered-To; bh=u3zjRZ4Hi6nrB37xg0zq1ppbVWE=; b=gLbYcIulMDDBl9Z n5i0irmzzH812G5BVMBb2JMuMyEiW0rItD/AMubx68ixhb3pb4Upm66KxXPW7xBK 2cprdvgcqbuj6PR7XlNItzHOJm6OwKUfKITHiZ1fsj4BlzNQBo0hDURNirzTx/tG EU4qWrs6IqVGvUfBaQ+juJUXhVOg= Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=default; d=gcc.gnu.org; h=Received:Received:X-SWARE-Spam-Status:X-Spam-Check-By:Received:Received:Message-ID:Date:From:User-Agent:MIME-Version:To:Subject:References:In-Reply-To:Content-Type:Mailing-List:Precedence:List-Id:List-Unsubscribe:List-Archive:List-Post:List-Help:Sender:Delivered-To; b=Byu34/4opumsYJxhSRGq3AV4UlJlmKHr7nFRdmDJTc4h7IUkXu12nlFDbi6XC4 EL52TafG7pHUsn/qJAsd8md7sW9ln8FFoL2VvBEAtSJfObFmk2uX3UgfbKLlsZJ5 u1u0D4SVXakFkcg1XLSvlVoC3CAsOP8sT1/aOy+VaH/IE=; Received: (qmail 20672 invoked by alias); 17 Feb 2012 13:13:21 -0000 Received: (qmail 20565 invoked by uid 22791); 17 Feb 2012 13:13:20 -0000 X-SWARE-Spam-Status: No, hits=-1.8 required=5.0 tests=AWL, BAYES_00, RCVD_IN_DNSWL_NONE X-Spam-Check-By: sourceware.org Received: from mx01.qsc.de (HELO mx01.qsc.de) (213.148.129.14) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Fri, 17 Feb 2012 13:12:55 +0000 Received: from [192.168.178.22] (port-92-204-91-168.dynamic.qsc.de [92.204.91.168]) by mx01.qsc.de (Postfix) with ESMTP id 1323E3CD7D; Fri, 17 Feb 2012 14:12:53 +0100 (CET) Message-ID: <4F3E5255.1070907@net-b.de> Date: Fri, 17 Feb 2012 14:12:53 +0100 From: Tobias Burnus User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:10.0.1) Gecko/20120208 Thunderbird/10.0.1 MIME-Version: 1.0 To: gcc patches , gfortran Subject: Re: [Patch, Fortran, committed] Fix various misspellings References: <4F3E31DB.4020301@net-b.de> In-Reply-To: <4F3E31DB.4020301@net-b.de> Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org 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 Index: ChangeLog =================================================================== --- ChangeLog (revision 184333) +++ ChangeLog (working copy) @@ -1,5 +1,11 @@ 2012-02-17 Tobias Burnus + Roland Stigge + PR translation/52273 + * interface.c (compare_actual_formal): Fix typo "at at". + +2012-02-17 Tobias Burnus + * gfortran.texi (Q exponent-letter): Fix grammar. 2012-02-17 Tobias Burnus Index: interface.c =================================================================== --- interface.c (revision 184333) +++ interface.c (working copy) @@ -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;