From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 25260 invoked by alias); 23 Dec 2013 04:28:56 -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 25244 invoked by uid 89); 23 Dec 2013 04:28:55 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.1 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; Mon, 23 Dec 2013 04:28:54 +0000 Received: from localhost (localhost.localdomain [127.0.0.1]) by filtered-rock.gnat.com (Postfix) with ESMTP id F368311617B; Sun, 22 Dec 2013 23:29:33 -0500 (EST) 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 2-NAuSbp9hPE; Sun, 22 Dec 2013 23:29:33 -0500 (EST) Received: from joel.gnat.com (localhost.localdomain [127.0.0.1]) by rock.gnat.com (Postfix) with ESMTP id 87324116177; Sun, 22 Dec 2013 23:29:33 -0500 (EST) Received: by joel.gnat.com (Postfix, from userid 1000) id 88DD5E00B1; Mon, 23 Dec 2013 08:28:41 +0400 (RET) Date: Mon, 23 Dec 2013 04:28:00 -0000 From: Joel Brobecker To: Eli Zaretskii Cc: gdb-patches@sourceware.org Subject: Re: [RFA/commit+doco] GDB/MI: Document support for -exec-run --start in -list-features Message-ID: <20131223042841.GF4605@adacore.com> References: <1386051670-28637-1-git-send-email-brobecker@adacore.com> <83wqjm4cwl.fsf@gnu.org> <20131210120252.GD3238@adacore.com> <20131223014015.GE4605@adacore.com> <83bo088bxh.fsf@gnu.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="XvKFcGCOAo53UbWW" Content-Disposition: inline In-Reply-To: <83bo088bxh.fsf@gnu.org> User-Agent: Mutt/1.5.21 (2010-09-15) X-SW-Source: 2013-12/txt/msg00878.txt.bz2 --XvKFcGCOAo53UbWW Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-length: 600 > > gdb/doc/ChangeLog: > > > > * gdb.texinfo (GDB/MI Support Commands): Add @findex entries > > for each @item in the table describing the list of features. > > Add empty line between each @item. > > > > OK to commit? > > It is OK, but the same effect for a much smaller effort would be > achieved by replacing @table with @ftable. Thgen each @item > automatically gets inserted into the function index. I didn't know that, thanks! Here is a new patch... gdb/doc/ChangeLog: * gdb.texinfo (GDB/MI Support Commands): Change @table into @ftable. -- Joel --XvKFcGCOAo53UbWW Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0001-Turn-list-feature-table-into-ftable.patch" Content-length: 1269 >From 86e54f9d0fa850ad464be97defd082a0224bd61b Mon Sep 17 00:00:00 2001 From: Joel Brobecker Date: Mon, 23 Dec 2013 05:33:59 +0400 Subject: [PATCH] Turn -list-feature @table into @ftable. This is to make it easier to discover the various options displayed by the -list-features command. gdb/doc/ChangeLog: * gdb.texinfo (GDB/MI Support Commands): Change @table into @ftable. --- gdb/doc/gdb.texinfo | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index 29f1cfc..8814cd0 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -35114,7 +35114,7 @@ Example output: The current list of features is: -@table @samp +@ftable @samp @item frozen-varobjs Indicates support for the @code{-var-set-frozen} command, as well as possible presense of the @code{frozen} field in the output @@ -35148,7 +35148,7 @@ records, produced when trying to execute an undefined @sc{gdb/mi} command @item exec-run-start-option Indicates that the @code{-exec-run} command supports the @option{--start} option (@pxref{GDB/MI Program Execution}). -@end table +@end ftable @subheading The @code{-list-target-features} Command @findex -list-target-features -- 1.8.3.2 --XvKFcGCOAo53UbWW--