From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 24924 invoked by alias); 10 Oct 2013 05:59:32 -0000 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 Received: (qmail 24914 invoked by uid 89); 10 Oct 2013 05:59:32 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=AWL,BAYES_00 autolearn=ham version=3.3.2 X-HELO: rock.gnat.com Received: from rock.gnat.com (HELO rock.gnat.com) (205.232.38.15) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-SHA encrypted) ESMTPS; Thu, 10 Oct 2013 05:59:31 +0000 Received: from localhost (localhost.localdomain [127.0.0.1]) by filtered-rock.gnat.com (Postfix) with ESMTP id 2826B116124; Thu, 10 Oct 2013 01:59:51 -0400 (EDT) Received: from rock.gnat.com ([127.0.0.1]) by localhost (rock.gnat.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 6tpfnK5W1OZ0; Thu, 10 Oct 2013 01:59:51 -0400 (EDT) Received: from joel.gnat.com (localhost.localdomain [127.0.0.1]) by rock.gnat.com (Postfix) with ESMTP id A96971160E8; Thu, 10 Oct 2013 01:59:50 -0400 (EDT) Received: by joel.gnat.com (Postfix, from userid 1000) id 30AD6E0149; Thu, 10 Oct 2013 09:59:28 +0400 (RET) Date: Thu, 10 Oct 2013 05:59:00 -0000 From: Joel Brobecker To: Eli Zaretskii Cc: palves@redhat.com, gdb-patches@sourceware.org Subject: Re: [RFA v2/code+DOCO+NEWS] new "set/show serial baud" command Message-ID: <20131010055928.GN3092@adacore.com> References: <87bo6affrh.fsf@fleche.redhat.com> <524ECCBB.5050307@gmail.com> <20131008035636.GC3092@adacore.com> <5253F497.6040709@redhat.com> <20131008141639.GF3092@adacore.com> <87siwbhk47.fsf@fleche.redhat.com> <20131009112334.GJ3092@adacore.com> <83li22qtrb.fsf@gnu.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="3Gf/FFewwPeBMqCJ" Content-Disposition: inline In-Reply-To: <83li22qtrb.fsf@gnu.org> User-Agent: Mutt/1.5.21 (2010-09-15) X-SW-Source: 2013-10/txt/msg00335.txt.bz2 --3Gf/FFewwPeBMqCJ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-length: 1198 > > gdb/doc/ChangeLog: > > > > * gdb.texinfo: Replace "set remotebaud" and "show remotebaud" > > by "set serial baud" and "show serial baud" (resp) throughout. > > You didn't mention the node name in the log entry. That was intentional, because it's a global search and replace. It's allowed by the GCS, but if you still prefer I repeat the node names, let me know, and I will dig them out. > > If you're using a serial line, you may want to give @value{GDBN} the > > -@w{@samp{--baud}} option, or use the @code{set remotebaud} command > > -(@pxref{Remote Configuration, set remotebaud}) before the > > +@w{@samp{--baud}} option, or use the @code{set serial baud} command > > Is @w really needed here? You have only one word there anyway. > > Otherwise, OK for the documentation parts. Thanks! For @w, now that I know what it means :-), I agree it does seem useless. But it was there before, so in the spirit of not mixing independent changes in the same patch, here is a second one that removes it. gdb/doc/ChangeLog: * gdb.texinfo (Connecting): Remove unnecessary @w{}. I will check it in as pre-approved/obvious. Tested on x86_64-linux. Thank you! -- Joel --3Gf/FFewwPeBMqCJ Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0001-Remove-unnecessary-w-in-gdb.texinfo.patch" Content-length: 882 >From 03e74b48b0c1a50bae671083f1530b1fe155e709 Mon Sep 17 00:00:00 2001 From: Joel Brobecker Date: Thu, 10 Oct 2013 09:51:02 +0400 Subject: [PATCH] Remove unnecessary @w{} in gdb.texinfo gdb/doc/ChangeLog: * gdb.texinfo (Connecting): Remove unnecessary @w{}. --- gdb/doc/gdb.texinfo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index bda2e7b..24773ea 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -18024,7 +18024,7 @@ target remote /dev/ttyb @end smallexample If you're using a serial line, you may want to give @value{GDBN} the -@w{@samp{--baud}} option, or use the @code{set serial baud} command +@samp{--baud} option, or use the @code{set serial baud} command (@pxref{Remote Configuration, set serial baud}) before the @code{target} command. -- 1.8.1.2 --3Gf/FFewwPeBMqCJ--