From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 89205 invoked by alias); 13 Apr 2019 19:10:54 -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 89197 invoked by uid 89); 13 Apr 2019 19:10:54 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-5.6 required=5.0 tests=AWL,BAYES_00,GIT_PATCH_1,SPF_PASS autolearn=ham version=3.3.1 spammy=H*r:142, H*r:sk:RSA_AES, letter 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; Sat, 13 Apr 2019 19:10:53 +0000 Received: from fencepost.gnu.org ([2001:470:142:3::e]:55069) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hFO38-0002KL-PL; Sat, 13 Apr 2019 15:10:50 -0400 Received: from [176.228.60.248] (port=1990 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1hFO36-0002zc-Hv; Sat, 13 Apr 2019 15:10:50 -0400 Date: Sat, 13 Apr 2019 19:10:00 -0000 Message-Id: <83lg0dk9gf.fsf@gnu.org> From: Eli Zaretskii To: Philippe Waroquiers CC: gdb-patches@sourceware.org In-reply-to: <20190413190016.11970-4-philippe.waroquiers@skynet.be> (message from Philippe Waroquiers on Sat, 13 Apr 2019 21:00:16 +0200) Subject: Re: [RFA 3/3] NEWS and documentation for / (slash) command. References: <20190413190016.11970-1-philippe.waroquiers@skynet.be> <20190413190016.11970-4-philippe.waroquiers@skynet.be> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-IsSubscribed: yes X-SW-Source: 2019-04/txt/msg00246.txt.bz2 > From: Philippe Waroquiers > Cc: Philippe Waroquiers > Date: Sat, 13 Apr 2019 21:00:16 +0200 > > +* New commands > + > +/SETTING... COMMAND > + The / command temporarily changes some settings according to SETTING > + to run COMMAND. ^^^^^^^^^^^^^^ I'd say "for the duration of COMMAND" instead. > +@cindex Settings > +@cindex Temporarily change settings By convention, index entries are not capitalized, to avoid problems with sorting them alphabetically (which produces locale-dependent results). > +The following table gives the list of settings that the @code{/} command > +can temporarily change. The first column gives the letter sequence > +identifying the setting corresponding to the command in the second column. > +The third column gives the type of the setting, and list the different > +possible values for the enumeration settings. Note that the below table > +is produced by the @code{help /} command. > + > +@smallexample > +@c In the 'doc' build directory, the following can be produced by: > +@c ../../gdb/gdb -q --nx -ex 'set width 80' -ex 'set height 0' -ex 'help /' -ex quit | > +@c sed -e '1,/The temporarily changeable settings are:/d' -e ':a;s/^\( *\) /@\1/;ta' -e 's/^/@exdent /' > +@c Maybe this could/should be automated by the doc Makefile ? > +@exdent /Be set backtrace past-entry Boolean on|off > +@exdent /Bl set backtrace limit Unsigned integer (0 means unlimited) Please rewrite this as a @multitable, so that it looks good in all formats. Thanks.