From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 20391 invoked by alias); 23 Apr 2011 06:49:52 -0000 Received: (qmail 20380 invoked by uid 22791); 23 Apr 2011 06:49:50 -0000 X-SWARE-Spam-Status: No, hits=-1.7 required=5.0 tests=AWL,BAYES_00,TW_TX,T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from mx.meyering.net (HELO mx.meyering.net) (82.230.74.64) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Sat, 23 Apr 2011 06:49:36 +0000 Received: by rho.meyering.net (Acme Bit-Twister, from userid 1000) id DD41460175; Sat, 23 Apr 2011 08:49:34 +0200 (CEST) From: Jim Meyering To: Mike Stump Cc: gcc-patches@gcc.gnu.org Subject: Re: doubled words In-Reply-To: <28E9107C-5AE0-469A-8410-9E18CB4E67F9@comcast.net> (Mike Stump's message of "Fri, 22 Apr 2011 17:50:02 -0700") References: <87wrj2nwxq.fsf@rho.meyering.net> <3D9D7160-F0C0-451E-964D-10D8E9537A7F@comcast.net> <8762qln7cf.fsf@rho.meyering.net> <28E9107C-5AE0-469A-8410-9E18CB4E67F9@comcast.net> Date: Sat, 23 Apr 2011 09:08:00 -0000 Message-ID: <87hb9pqx6p.fsf@rho.meyering.net> MIME-Version: 1.0 Content-Type: text/plain 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 X-SW-Source: 2011-04/txt/msg01925.txt.bz2 Mike Stump wrote: > On Apr 10, 2011, at 2:07 PM, Jim Meyering wrote: >> $ git ls-files .|xargs perl -0777 -n -e 'while (/\b(it)\s+\1\b/gms)' >> -e '{$n=($` =~ tr/\n/\n/ + 1); ($v=$&)=~s/\n/\\n/g; print >> "$ARGV:$n:$v\n"}'|grep -v ChangeLog >> gcc/config/cris/cris.opt:152:it it >> gcc/gensupport.c:1066:it\n it > > These are obvious to me, so I checked in fixes for them. Likewise for this: gcc/ada/gnat_ugn.texi:12636:it\nit >From 9eeae941081b3d6a0dd2c7db2b4752a3f04b1541 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sat, 23 Apr 2011 08:47:04 +0200 Subject: [PATCH] * gnat_ugn.texi (Examples of gnatxref Usage): Fix typo: s/it it/it is/ --- gcc/ada/ChangeLog | 4 ++++ gcc/ada/gnat_ugn.texi | 2 +- 2 files changed, 5 insertions(+), 1 deletions(-) diff --git a/gcc/ada/ChangeLog b/gcc/ada/ChangeLog index 70df175..f6e705e 100644 --- a/gcc/ada/ChangeLog +++ b/gcc/ada/ChangeLog @@ -1,3 +1,7 @@ +2011-04-23 Jim Meyering + + * gnat_ugn.texi (Examples of gnatxref Usage): Fix typo: s/it it/it is/ + 2011-04-22 Eric Botcazou * gcc-interface/decl.c (make_packable_type): Copy DECL_PARALLEL_TYPE diff --git a/gcc/ada/gnat_ugn.texi b/gcc/ada/gnat_ugn.texi index d843106..463662a 100644 --- a/gcc/ada/gnat_ugn.texi +++ b/gcc/ada/gnat_ugn.texi @@ -12634,7 +12634,7 @@ that is the entity @code{Main} is declared in main.ads, line 2, column 9, its body is in main.adb, line 1, column 14 and is not referenced any where. The entity @code{Print} is declared in bar.ads, line 2, column 15 and it -it referenced in main.adb, line 6 column 12 and line 7 column 12. +is referenced in main.adb, line 6 column 12 and line 7 column 12. @item gnatxref package1.adb package2.ads @code{gnatxref} will generates cross-reference information for -- 1.7.5.rc3.291.g63e4e