This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [RFA/commit+doco] GDB/MI: Document support for -exec-run --start in -list-features


Next step in the patch series is to add @findex'es for each
item in the -list-features table. This one was purely mechanical...

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?

Thank you,
-- 
Joel
>From 48758b378554b9b148c86ff94c8d0f5a0bff054b Mon Sep 17 00:00:00 2001
From: Joel Brobecker <brobecker@adacore.com>
Date: Mon, 23 Dec 2013 05:33:59 +0400
Subject: [PATCH] Add @findex for each @item of -list-features

This is to make it easier to discover the various options displayed
by the -list-features command.

It also adds an empty line between each @item of the table, for
added clarity.  Otherwise, it is becoming harder to visually
separate each entry, and thus edit that part of the file.

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.
---
 gdb/doc/gdb.texinfo | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo
index 29f1cfc..6b8241d 100644
--- a/gdb/doc/gdb.texinfo
+++ b/gdb/doc/gdb.texinfo
@@ -35115,39 +35115,62 @@ Example output:
 The current list of features is:
 
 @table @samp
+
 @item frozen-varobjs
+@findex frozen-varobjs
 Indicates support for the @code{-var-set-frozen} command, as well
 as possible presense of the @code{frozen} field in the output
 of @code{-varobj-create}.
+
 @item pending-breakpoints
+@findex pending-breakpoints
 Indicates support for the @option{-f} option to the @code{-break-insert}
 command.
+
 @item python
+@findex python
 Indicates Python scripting support, Python-based
 pretty-printing commands, and possible presence of the
 @samp{display_hint} field in the output of @code{-var-list-children}
+
 @item thread-info
+@findex thread-info
 Indicates support for the @code{-thread-info} command.
+
 @item data-read-memory-bytes
+@findex data-read-memory-bytes
 Indicates support for the @code{-data-read-memory-bytes} and the
 @code{-data-write-memory-bytes} commands.
+
 @item breakpoint-notifications
+@findex breakpoint-notifications
 Indicates that changes to breakpoints and breakpoints created via the
 CLI will be announced via async records.
+
 @item ada-task-info
+@findex ada-task-info
 Indicates support for the @code{-ada-task-info} command.
+
 @item language-option
+@findex language-option
 Indicates that all @sc{gdb/mi} commands accept the @option{--language}
 option (@pxref{Context management}).
+
 @item info-gdb-mi-command
+@findex info-gdb-mi-command
 Indicates support for the @code{-info-gdb-mi-command} command.
+
 @item undefined-command-error-code
+@findex undefined-command-error-code
 Indicates support for the "undefined-command" error code in error result
 records, produced when trying to execute an undefined @sc{gdb/mi} command
 (@pxref{GDB/MI Result Records}).
+
 @item exec-run-start-option
+@findex exec-run-start-option
 Indicates that the @code{-exec-run} command supports the @option{--start}
 option (@pxref{GDB/MI Program Execution}).
+
 @end table
 
 @subheading The @code{-list-target-features} Command
-- 
1.8.3.2


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]