From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 93596 invoked by alias); 21 Feb 2019 15:11:13 -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 93570 invoked by uid 89); 21 Feb 2019 15:11:13 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-16.9 required=5.0 tests=BAYES_00,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,SPF_PASS autolearn=ham version=3.3.2 spammy=H*r:sk:RSA_AES, H*r:4.82, Various X-HELO: eggs.gnu.org Received: from eggs.gnu.org (HELO eggs.gnu.org) (209.51.188.92) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 21 Feb 2019 15:11:11 +0000 Received: from fencepost.gnu.org ([2001:470:142:3::e]:53846) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gwq0A-0003ez-Df; Thu, 21 Feb 2019 10:11:08 -0500 Received: from [176.228.60.248] (port=3755 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1gwq0A-0002Qn-1M; Thu, 21 Feb 2019 10:11:06 -0500 Date: Thu, 21 Feb 2019 15:11:00 -0000 Message-Id: <83tvgxfa7q.fsf@gnu.org> From: Eli Zaretskii To: Alan Hayward CC: gdb-patches@sourceware.org, nd@arm.com In-reply-to: <20190221132331.19849-1-alan.hayward@arm.com> (message from Alan Hayward on Thu, 21 Feb 2019 13:23:44 +0000) Subject: Re: [PATCH] Document style behavior in batch mode. References: <20190221132331.19849-1-alan.hayward@arm.com> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-IsSubscribed: yes X-SW-Source: 2019-02/txt/msg00347.txt.bz2 > From: Alan Hayward > CC: nd , Alan Hayward > Date: Thu, 21 Feb 2019 13:23:44 +0000 > > Style is disabled when running in batch mode. > > gdb/ChangeLog: > > 2019-02-21 Alan Hayward > > * NEWS: Update style defaults. > > gdb/doc/ChangeLog: > > 2019-02-21 Alan Hayward > > * gdb.texinfo: Update style defaults. This is OK, but: > --- a/gdb/doc/gdb.texinfo > +++ b/gdb/doc/gdb.texinfo > @@ -24514,8 +24514,9 @@ Show the current pagination mode. > @kindex set style > @kindex show style > @value{GDBN} can style its output on a capable terminal. This is > -enabled by default on most systems. Various style settings are > -available; and styles can also be disabled entirely. > +enabled by default on most systems, but disabled by default when in > +batch mode. Various style settings are available; and styles can > +also be disabled entirely. Please insert "(@pxref{Mode Options})" (without the quotes) after "batch mode", to provide the readers of the manual with a hyperlink to where that mode is described. Thanks.