From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 2082 invoked by alias); 1 Jul 2010 14:00:38 -0000 Received: (qmail 2074 invoked by uid 22791); 1 Jul 2010 14:00:37 -0000 X-SWARE-Spam-Status: No, hits=-2.0 required=5.0 tests=AWL,BAYES_00,T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from mail.codesourcery.com (HELO mail.codesourcery.com) (38.113.113.100) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Thu, 01 Jul 2010 14:00:31 +0000 Received: (qmail 15363 invoked from network); 1 Jul 2010 14:00:30 -0000 Received: from unknown (HELO orlando.localnet) (pedro@127.0.0.2) by mail.codesourcery.com with ESMTPA; 1 Jul 2010 14:00:30 -0000 From: Pedro Alves To: gdb-patches@sourceware.org Subject: Re: Static tracepoints support Date: Thu, 01 Jul 2010 14:00:00 -0000 User-Agent: KMail/1.13.2 (Linux/2.6.31-10-rt; KDE/4.4.2; x86_64; ; ) Cc: Eli Zaretskii References: <201006251931.57860.pedro@codesourcery.com> <83tyoqcc8i.fsf@gnu.org> <201006281326.39820.pedro@codesourcery.com> In-Reply-To: <201006281326.39820.pedro@codesourcery.com> MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Message-Id: <201007011500.27076.pedro@codesourcery.com> X-IsSubscribed: yes Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2010-07/txt/msg00004.txt.bz2 On Monday 28 June 2010 13:26:38, Pedro Alves wrote: > > > +with that name. With no LOCATION, uses current execution address of \n\ > > > +selected stack frame.\n\ > > > > "of the selected stack frame" > > Fixed. Needs fixing in BREAK_ARGS_HELP; it's showing up in the help > strings of all breakpoint commands. > Here's the fix for all other breakpoint commands, but I do note some sort of pattern here: it appears that "the" was avoided on purpose in all the sentences as can be seen in the contenxt of the patch. Would you like to review the whole help string, or is this correct? -- Pedro Alves 2010-07-01 Pedro Alves * breakpoint.c (BREAK_ARGS_HELP): Add missing `the'. --- gdb/breakpoint.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Index: src/gdb/breakpoint.c =================================================================== --- src.orig/gdb/breakpoint.c 2010-07-01 14:51:37.000000000 +0100 +++ src/gdb/breakpoint.c 2010-07-01 14:52:54.000000000 +0100 @@ -11496,8 +11496,8 @@ LOCATION may be a line number, function If a line number is specified, break at start of code for that line.\n\ If a function is specified, break at start of code for that function.\n\ If an address is specified, break at that exact address.\n\ -With no LOCATION, uses current execution address of selected stack frame.\n\ -This is useful for breaking on return to a stack frame.\n\ +With no LOCATION, uses current execution address of the selected\n\ +stack frame. This is useful for breaking on return to a stack frame.\n\ \n\ THREADNUM is the number from \"info threads\".\n\ CONDITION is a boolean expression.\n\