From patchwork Thu Feb 6 20:37:05 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Benno Schulenberg X-Patchwork-Id: 317537 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]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 6C0322C0091 for ; Fri, 7 Feb 2014 07:37:16 +1100 (EST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender :message-id:date:from:mime-version:to:subject:content-type :content-transfer-encoding; q=dns; s=default; b=vlIMu9zjIFSAdtmG 4PXNzlEwTUYStpKMLtsbOfOr2TiT7iT+OPFVKE3DO/hlvZueYoGjhrdnUk7I1/ia 2LAwXn6Bl1ieQzxvU9G1N2UFYvCr5pXY3H9CwMaznBR+8X+XILS2KHZ6lTGclU3a aLyfjEUWhPAxfggR50N7Pa2iw0w= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender :message-id:date:from:mime-version:to:subject:content-type :content-transfer-encoding; s=default; bh=ckVgGp2KYAsCBbZg9vR3fW 3fZpk=; b=anP9M8Cq8GFNRi+81TfaNQDpxdEvYgcqpBhsZisa6j33CV14Uc2oAX D5LGtpUTS7yXbwgBAmYdIprSLSbeWn/795Ld1omCIzNr4uhBgpA1Bq7QGhW1H44D RAIVTQOouUNMJbLm6VvCzymLFJznisWAx1rOD3z/z+M6PsKrR9wNg= Received: (qmail 3534 invoked by alias); 6 Feb 2014 20:37:09 -0000 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 Received: (qmail 3522 invoked by uid 89); 6 Feb 2014 20:37:09 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-1.1 required=5.0 tests=BAYES_00, FREEMAIL_FROM, SPF_NEUTRAL autolearn=no version=3.3.2 X-HELO: relay1.webreus.nl Received: from relay1.webreus.nl (HELO relay1.webreus.nl) (46.235.43.249) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 06 Feb 2014 20:37:08 +0000 Received: from relay1.webreus.nl (relay2.webreus.nl [127.0.0.1]) by relay1.webreus.nl (Postfix) with ESMTP id 56E95990C03C for ; Thu, 6 Feb 2014 21:39:51 +0100 (CET) Received: from srv195098.webreus.nl (srv044098.webreus.nl [46.235.44.98]) by relay1.webreus.nl (Postfix) with ESMTP for ; Thu, 6 Feb 2014 21:39:51 +0100 (CET) Received: (qmail 50812 invoked from network); 6 Feb 2014 21:37:06 +0100 Received: from 195-241-183-192.ip.telfort.nl (HELO ?192.168.1.42?) (195.241.183.192) by srv044098.webreus.nl with (DHE-RSA-AES256-SHA encrypted) SMTP; 6 Feb 2014 21:37:06 +0100 Message-ID: <52F3F271.3010002@justemail.net> Date: Thu, 06 Feb 2014 21:37:05 +0100 From: Benno Schulenberg User-Agent: Mozilla/5.0 (X11; Linux i686; rv:17.0) Gecko/20130330 Thunderbird/17.0.5 MIME-Version: 1.0 To: gcc-patches@gcc.gnu.org Subject: [PATCH] Fix PR55289, a typoed word in an error message Below patch fixes another miswording in an error message, reported by Roland Stigge. Please apply. 2014-02-06 Benno Schulenberg PR translation/52289 * fortran/resolve.c (resolve_ordinary_assign): Fix typoed word in an error message. Index: fortran/resolve.c =================================================================== --- fortran/resolve.c (revision 207551) +++ fortran/resolve.c (working copy) @@ -9218,7 +9218,7 @@ /* F2008, Section 7.2.1.2. */ if (gfc_is_coindexed (lhs) && gfc_has_ultimate_allocatable (lhs)) { - gfc_error ("Coindexed variable must not be have an allocatable ultimate " + gfc_error ("Coindexed variable must not have an allocatable ultimate " "component in assignment at %L", &lhs->where); return false; }