From patchwork Tue Jul 23 20:18:16 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Joseph Myers X-Patchwork-Id: 261188 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 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "localhost", Issuer "www.qmailtoaster.com" (not verified)) by ozlabs.org (Postfix) with ESMTPS id BF2262C00C7 for ; Wed, 24 Jul 2013 06:18:37 +1000 (EST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:date :from:to:cc:subject:in-reply-to:message-id:references :mime-version:content-type; q=dns; s=default; b=bxEuTY+CQPuF1GiC wkO0M1ojHKcQdsM7J9e1nkIS5EcYeRJKI1ab+agrMzjdq1hAaYzJzMJUnoLebFK3 QBKVMkewuWUQMt7p8+xKgAkJLPnIbkfIgTZ66DHZpoMJW08D1X5E798ulRPdsg2F v6wN3PXg/XmVoaKsvbIgRLVTaLM= 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:date :from:to:cc:subject:in-reply-to:message-id:references :mime-version:content-type; s=default; bh=DL9JA5eKMtyaHFCDTLe9Rz HFppA=; b=PugjAj/iagZN85sLTuON3ixt3j6rc+Qh2cCAMVarRL8E9nGzuO6VHt IjirMywFRQcUkvG6sBFaSkrOqwCJcgCfYyEro1txC1RTEZzpEQNXn6o8ZGDYdXeh WLiZl7CYb+XBLQKdeGQUFy/49QJd42mr3qTe4MTQsqmXFKJlah5IA= Received: (qmail 22917 invoked by alias); 23 Jul 2013 20:18:30 -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 22890 invoked by uid 89); 23 Jul 2013 20:18:29 -0000 X-Spam-SWARE-Status: No, score=-3.0 required=5.0 tests=AWL, BAYES_50, KHOP_RCVD_UNTRUST, KHOP_THREADED, RCVD_IN_HOSTKARMA_W, RCVD_IN_HOSTKARMA_WL, RDNS_NONE autolearn=no version=3.3.1 Received: from Unknown (HELO relay1.mentorg.com) (192.94.38.131) by sourceware.org (qpsmtpd/0.84/v0.84-167-ge50287c) with ESMTP; Tue, 23 Jul 2013 20:18:28 +0000 Received: from svr-orw-fem-01.mgc.mentorg.com ([147.34.98.93]) by relay1.mentorg.com with esmtp id 1V1j2K-0001Wa-Gc from joseph_myers@mentor.com ; Tue, 23 Jul 2013 13:18:20 -0700 Received: from SVR-IES-FEM-01.mgc.mentorg.com ([137.202.0.104]) by svr-orw-fem-01.mgc.mentorg.com over TLS secured channel with Microsoft SMTPSVC(6.0.3790.4675); Tue, 23 Jul 2013 13:18:20 -0700 Received: from digraph.polyomino.org.uk (137.202.0.76) by SVR-IES-FEM-01.mgc.mentorg.com (137.202.0.104) with Microsoft SMTP Server id 14.2.247.3; Tue, 23 Jul 2013 21:18:18 +0100 Received: from jsm28 (helo=localhost) by digraph.polyomino.org.uk with local-esmtp (Exim 4.76) (envelope-from ) id 1V1j2G-0004b7-Tg; Tue, 23 Jul 2013 20:18:16 +0000 Date: Tue, 23 Jul 2013 20:18:16 +0000 From: "Joseph S. Myers" To: Tom Tromey CC: Subject: Re: RFA: implement C11 _Generic In-Reply-To: <87hafl4ue0.fsf@fleche.redhat.com> Message-ID: References: <87mx2l9emz.fsf@fleche.redhat.com> <87hafl4ue0.fsf@fleche.redhat.com> MIME-Version: 1.0 On Tue, 23 Jul 2013, Tom Tromey wrote: > Joseph> + /* The association's type, or NULL_TREE for 'default'.. */ > > It's trivial, but I happened to notice that this ".." should be just > ".". The extra "." was in the original patch too. Thanks, I've applied this patch to fix this typo. Index: c-parser.c =================================================================== --- c-parser.c (revision 201177) +++ c-parser.c (working copy) @@ -6238,7 +6238,7 @@ { /* The location of the starting token of the type. */ location_t type_location; - /* The association's type, or NULL_TREE for 'default'.. */ + /* The association's type, or NULL_TREE for 'default'. */ tree type; /* The association's expression. */ struct c_expr expression; Index: ChangeLog =================================================================== --- ChangeLog (revision 201177) +++ ChangeLog (working copy) @@ -1,3 +1,7 @@ +2013-07-23 Joseph Myers + + * c-parser.c (struct c_generic_association): Fix typo. + 2013-07-23 Tom Tromey Joseph Myers