Fri Mar 24 12:10:38 2000 glen mccready <gkm@pobox.com>
authorGlen McCready <gkm@pobox.com>
Thu, 20 Apr 2000 23:51:01 +0000 (23:51 +0000)
committerGlen McCready <gkm@pobox.com>
Thu, 20 Apr 2000 23:51:01 +0000 (23:51 +0000)
        * command.c, command.h (help_all): Add functionality to display
        a complete listing of available commands.

gdb/ChangeLog
gdb/command.c
gdb/command.h

index 0e0f421a6f9c05040ac1b974f68a40da8d8a5610..740a3adaa4c8be96f0f481bee1f9f650e4cecb49 100644 (file)
@@ -1,3 +1,8 @@
+Fri Mar 24 12:10:38 2000  glen mccready  <gkm@pobox.com>
+
+        * command.c, command.h (help_all): Add functionality to display
+        a complete listing of available commands.
+
 2000-04-20  Scott Bambrough <scottb@netwinder.org>
 
        * arm-linux-nat.c (PIDGET, TIDGET): New.
index 737ac77122294d3b73e057ab4a332f430c6c9c0e..279bc68f388c00e6cdb87ba0096adb2e26b7b16b 100644 (file)
@@ -510,6 +510,12 @@ help_cmd (command, stream)
       return;
     }
 
+  if (strcmp (command, "all") == 0)
+    {
+      help_all (stream);
+      return;
+    }
+
   c = lookup_cmd (&command, cmdlist, "", 0, 0);
 
   if (c == 0)
@@ -602,6 +608,27 @@ Command name abbreviations are allowed if unambiguous.\n",
                    cmdtype1, cmdtype2);
 }
 
+static void
+help_all (stream)
+     struct ui_file *stream;
+{
+  struct cmd_list_element *c;
+  extern struct cmd_list_element *cmdlist;
+
+  for (c = cmdlist; c; c = c->next)
+    {
+      if (c->abbrev_flag)
+        continue;
+      /* If this is a prefix command, print it's subcommands */
+      if (c->prefixlist)
+        help_cmd_list (*c->prefixlist, all_commands, c->prefixname, 0, stream);
+    
+      /* If this is a class name, print all of the commands in the class */
+      else if (c->function.cfunc == NULL)
+        help_cmd_list (cmdlist, c->class, "", 0, stream);
+    }
+}
+
 /* Print only the first line of STR on STREAM.  */
 static void
 print_doc_line (stream, str)
index 20e4fd50ed61cdd7a51b8703f03844d16cb6d97e..51215888f09f6ae34a62338f0b8085368941a8a6 100644 (file)
@@ -284,6 +284,8 @@ extern void help_list (struct cmd_list_element *, char *,
 extern void help_cmd_list (struct cmd_list_element *, enum command_class,
                           char *, int, struct ui_file *);
 
+extern void help_all (struct ui_file *);
+
 extern struct cmd_list_element *
   add_set_cmd PARAMS ((char *, enum command_class, var_types, char *, char *,
                       struct cmd_list_element **));
This page took 0.030014 seconds and 4 git commands to generate.