From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 15533 invoked by alias); 12 Apr 2015 01:14:41 -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 15521 invoked by uid 89); 12 Apr 2015 01:14:40 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=1.0 required=5.0 tests=BAYES_00,FREEMAIL_FROM,FSL_HELO_FAKE,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=no version=3.3.2 X-HELO: mail-la0-f52.google.com Received: from mail-la0-f52.google.com (HELO mail-la0-f52.google.com) (209.85.215.52) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Sun, 12 Apr 2015 01:14:39 +0000 Received: by layy10 with SMTP id y10so35685226lay.0 for ; Sat, 11 Apr 2015 18:14:36 -0700 (PDT) X-Received: by 10.152.7.239 with SMTP id m15mr7075683laa.95.1428801276296; Sat, 11 Apr 2015 18:14:36 -0700 (PDT) Received: from gmail.com ([176.108.160.253]) by mx.google.com with ESMTPSA id up8sm729491lbb.27.2015.04.11.18.14.34 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sat, 11 Apr 2015 18:14:35 -0700 (PDT) Subject: Re: [PATCH 1/4] Docs: extend.texi: Add missing semicolon for consistency Date: Sun, 12 Apr 2015 01:14:00 -0000 From: Michael Witten To: Gerald Pfeifer Cc: gcc-patches@gcc.gnu.org Message-ID: <15e97bad1c464fffb29c678c63b74361-mfwitten@gmail.com> In-Reply-To: References: <378e16b9-5d40-427c-8b4e-00700b2ad30c-mfwitten@gmail.com> <1370549d-0ad8-4e6a-92bf-0dcc6a6eb789-mfwitten@gmail.com> X-IsSubscribed: yes X-SW-Source: 2015-04/txt/msg00518.txt.bz2 On Wed, 8 Apr 2015 21:13:10 +0200 (CEST), Gerald Pfeifer wrote: > 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 > > 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 Well, now! What a pleasant surprise! I was looking for a reason to crack open a beer, and this shall do nicely. Say, how did you end up coming across this patch after nearly 4 years? Anyway, thanks for letting me know, and thank you and the rest of the GCC team for all of your hard work; you make the world go round. Sincerely, Michael Witten