diff options
Diffstat (limited to 'gdb/macrocmd.c')
-rw-r--r-- | gdb/macrocmd.c | 15 |
1 files changed, 3 insertions, 12 deletions
diff --git a/gdb/macrocmd.c b/gdb/macrocmd.c index 54aa35e..42915db 100644 --- a/gdb/macrocmd.c +++ b/gdb/macrocmd.c @@ -33,15 +33,6 @@ static struct cmd_list_element *macrolist; -static void -macro_command (const char *arg, int from_tty) -{ - printf_unfiltered - ("\"macro\" must be followed by the name of a macro command.\n"); - help_list (macrolist, "macro ", all_commands, gdb_stdout); -} - - /* Macro expansion commands. */ @@ -464,9 +455,9 @@ _initialize_macrocmd () { /* We introduce a new command prefix, `macro', under which we'll put the various commands for working with preprocessor macros. */ - add_prefix_cmd ("macro", class_info, macro_command, - _("Prefix for commands dealing with C preprocessor macros."), - ¯olist, "macro ", 0, &cmdlist); + add_basic_prefix_cmd ("macro", class_info, + _("Prefix for commands dealing with C preprocessor macros."), + ¯olist, "macro ", 0, &cmdlist); add_cmd ("expand", no_class, macro_expand_command, _("\ Fully expand any C/C++ preprocessor macro invocations in EXPRESSION.\n\ |