Add "language-option" to -list-features
authorJoel Brobecker <brobecker@adacore.com>
Thu, 14 Nov 2013 10:57:01 +0000 (14:57 +0400)
committerJoel Brobecker <brobecker@adacore.com>
Mon, 18 Nov 2013 11:34:53 +0000 (15:34 +0400)
Following the addition of the --language optiton to all GDB/MI
commands,  I realized that there was no easy way for front-ends
to figure out whether this features is available or not. So I added
a "language-option" entry to -list-features.

gdb/ChangeLog:

        * mi/mi-main.c (mi_cmd_list_features): Add "language-options"
        to -list-features output.

gdb/doc/ChangeLog:

        * gdb.texinfo (GDB/MI Miscellaneous Commands): Document the new
        "language-option" entry in the output of the "-list-features"
        command.

gdb/ChangeLog
gdb/doc/ChangeLog
gdb/doc/gdb.texinfo
gdb/mi/mi-main.c

index 83374a638c0d33d17b41f57029e8d0714ef6c5e0..53de4fb67ec17e59204dc5e710cbad77f024d0d4 100644 (file)
@@ -1,3 +1,8 @@
+2013-11-18  Joel Brobecker  <brobecker@adacore.com>
+
+       * mi/mi-main.c (mi_cmd_list_features): Add "language-options"
+       to -list-features output.
+
 2013-11-17  Joel Brobecker  <brobecker@adacore.com>
 
        * dwarf2expr.h (struct dwarf_expr_context_funcs)
index 2750b0a1c5998d1d052b203a2c1ba3ca4e89769e..53bb973b7546c6c1bb9d70ec4d2ca4e63c0f3be7 100644 (file)
@@ -1,3 +1,9 @@
+2013-11-18  Joel Brobecker  <brobecker@adacore.com>
+
+       * gdb.texinfo (GDB/MI Miscellaneous Commands): Document the new
+       "language-option" entry in the output of the "-list-features"
+       command.
+
 2013-11-15  Tom Tromey  <tromey@redhat.com>
 
        * gdb.texinfo (Variables): Note gdb rules for ambiguous cases.
index cfb2cdb3d4da957c2877bc4dd7e209e3e039f2e1..19e9aa54e056e62f763467a81307f9c4693a0a9c 100644 (file)
@@ -35119,6 +35119,9 @@ Indicates support for the @code{-ada-task-info} command.
 Indicates support for the following commands, all of them related to Ada
 exceptions: @code{-info-ada-exceptions}, @code{-catch-assert} and
 @code{-catch-exception}.
+@item language-option
+Indicates that all @sc{gdb/mi} commands accept the @option{--language}
+option (@pxref{Context management}).
 @end table
 
 @subheading The @code{-list-target-features} Command
index bbf944a0a316da1b40c11f82ee09f92b6a3424ea..83d524a3af297557b6a6cd97e23bd2ca0c5bdf59 100644 (file)
@@ -1816,6 +1816,7 @@ mi_cmd_list_features (char *command, char **argv, int argc)
       ui_out_field_string (uiout, NULL, "breakpoint-notifications");
       ui_out_field_string (uiout, NULL, "ada-task-info");
       ui_out_field_string (uiout, NULL, "ada-exceptions");
+      ui_out_field_string (uiout, NULL, "language-option");
       
 #if HAVE_PYTHON
       if (gdb_python_initialized)