From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 78609 invoked by alias); 8 Apr 2015 19:13:16 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 78587 invoked by uid 89); 8 Apr 2015 19:13:15 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.0 required=5.0 tests=AWL,BAYES_00,SPF_PASS autolearn=ham version=3.3.2 X-HELO: ainaz.pair.com Received: from ainaz.pair.com (HELO ainaz.pair.com) (209.68.2.66) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Wed, 08 Apr 2015 19:13:14 +0000 Received: from [192.168.0.133] (vie-91-186-144-236.dsl.sil.at [91.186.144.236]) by ainaz.pair.com (Postfix) with ESMTPSA id D2F7B3F472; Wed, 8 Apr 2015 15:13:11 -0400 (EDT) Date: Wed, 08 Apr 2015 19:13:00 -0000 From: Gerald Pfeifer To: Michael Witten cc: gcc-patches@gcc.gnu.org Subject: Re: [PATCH 1/4] Docs: extend.texi: Add missing semicolon for consistency In-Reply-To: <1370549d-0ad8-4e6a-92bf-0dcc6a6eb789-mfwitten@gmail.com> Message-ID: References: <378e16b9-5d40-427c-8b4e-00700b2ad30c-mfwitten@gmail.com> <1370549d-0ad8-4e6a-92bf-0dcc6a6eb789-mfwitten@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII X-IsSubscribed: yes X-SW-Source: 2015-04/txt/msg00349.txt.bz2 Hi Michael, and big apologies for this falling through a lot of cracks apparently. I just committed your patch with the ChangeLog below. If there are any other patches that have not been committed (nor NACKed yet, I know there were some as well), please let us know and I will look into getting at least documentation patches addressed swiftly going forward. Thank you, and sorry again, Gerald 2015-04-08 Michael Witten * doc/extend.texi (Attribute Syntax): Add a trailing semicolon to an example. Index: doc/extend.texi =================================================================== --- doc/extend.texi (revision 221930) +++ doc/extend.texi (working copy) @@ -4771,7 +4771,7 @@ @smallexample __attribute__((noreturn)) void d0 (void), __attribute__((format(printf, 1, 2))) d1 (const char *, ...), - d2 (void) + d2 (void); @end smallexample @noindent On Wed, 27 Apr 2011, Michael Witten wrote: > --- > trunk/gcc/doc/extend.texi | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/trunk/gcc/doc/extend.texi b/trunk/gcc/doc/extend.texi > index eddff95..c154958 100644 > --- a/trunk/gcc/doc/extend.texi > +++ b/trunk/gcc/doc/extend.texi > @@ -3997,7 +3997,7 @@ > @smallexample > __attribute__((noreturn)) void d0 (void), > __attribute__((format(printf, 1, 2))) d1 (const char *, ...), > - d2 (void) > + d2 (void); > @end smallexample > > @noindent