From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 8385 invoked by alias); 20 Dec 2005 19:35:48 -0000 Received: (qmail 8356 invoked by uid 22791); 20 Dec 2005 19:35:47 -0000 X-Spam-Check-By: sourceware.org Received: from zproxy.gmail.com (HELO zproxy.gmail.com) (64.233.162.203) by sourceware.org (qpsmtpd/0.31) with ESMTP; Tue, 20 Dec 2005 19:35:45 +0000 Received: by zproxy.gmail.com with SMTP id l1so1619540nzf for ; Tue, 20 Dec 2005 11:35:43 -0800 (PST) Received: by 10.37.20.80 with SMTP id x80mr7103252nzi; Tue, 20 Dec 2005 11:35:43 -0800 (PST) Received: by 10.37.2.6 with HTTP; Tue, 20 Dec 2005 11:35:43 -0800 (PST) Message-ID: <8f2776cb0512201135i727e1ce0q14f2728b57b9e015@mail.gmail.com> Date: Thu, 22 Dec 2005 04:56:00 -0000 From: Jim Blandy To: Joel Brobecker Subject: Re: [commit] spelling errors in rs6000-tdep.c Cc: gdb-patches@sources.redhat.com In-Reply-To: <20051220180054.GY991@adacore.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_Part_4654_21758598.1135107343657" References: <20051220140445.GT31944@adacore.com> <20051220180054.GY991@adacore.com> X-IsSubscribed: yes Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2005-12/txt/msg00251.txt.bz2 ------=_Part_4654_21758598.1135107343657 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Content-length: 406 At the risk of bike-shedding... The fact that "nonexistent" is in regular use doesn't mean that "existent" is entirely kosher: http://www.ling.upenn.edu/courses/ling001/mccord.html In the 'sz' fields, I think "nonexistent" is right: it's zero when the registers don't exist. But in rs6000_gdbarch_init, "extant" is a much better word, having the connotations of "already". I've committed the attached. ------=_Part_4654_21758598.1135107343657 Content-Type: text/x-patch; name=jimb.gdb-rs6000-extant-doc-fix.patch; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="jimb.gdb-rs6000-extant-doc-fix.patch" Content-length: 986 gdb/ChangeLog: 2005-12-20 Jim Blandy * rs6000-tdep.c (rs6000_gdbarch_init): Doc fix. Index: gdb/rs6000-tdep.c =================================================================== RCS file: /cvs/src/src/gdb/rs6000-tdep.c,v retrieving revision 1.251 diff -c -p -r1.251 rs6000-tdep.c *** gdb/rs6000-tdep.c 20 Dec 2005 17:57:44 -0000 1.251 --- gdb/rs6000-tdep.c 20 Dec 2005 19:32:44 -0000 *************** rs6000_gdbarch_init (struct gdbarch_info *** 3120,3126 **** wordsize = 4; } ! /* Find a candidate among existent architectures. */ for (arches = gdbarch_list_lookup_by_info (arches, &info); arches != NULL; arches = gdbarch_list_lookup_by_info (arches->next, &info)) --- 3120,3126 ---- wordsize = 4; } ! /* Find a candidate among extant architectures. */ for (arches = gdbarch_list_lookup_by_info (arches, &info); arches != NULL; arches = gdbarch_list_lookup_by_info (arches->next, &info)) ------=_Part_4654_21758598.1135107343657--