aboutsummaryrefslogtreecommitdiff
path: root/gdb/macrocmd.c
diff options
context:
space:
mode:
authorAndrew Burgess <andrew.burgess@embecosm.com>2015-11-09 20:27:55 +0000
committerAndrew Burgess <andrew.burgess@embecosm.com>2015-11-11 09:04:05 +0000
commit5f515954d10b69ba6c390e7b8bcfdba2ced7850b (patch)
treef4975dfb0bbfbadf8c6481763e1029774fbcbe0a /gdb/macrocmd.c
parentf3575e08379b36ab3a286c8fb5838a2d54424073 (diff)
gdb: Make use of 'add_info' to create info sub-commands.
Switch to using 'add_info' function for creating basic info sub-commands. gdb/ChangeLog: * avr-tdep.c (_initialize_avr_tdep): Switch to 'add_info' for creating info sub-commands. * gnu-nat.c (add_task_commands): Likewise. * macrocmd.c (_initialize_macrocmd): Likewise.
Diffstat (limited to 'gdb/macrocmd.c')
-rw-r--r--gdb/macrocmd.c15
1 files changed, 6 insertions, 9 deletions
diff --git a/gdb/macrocmd.c b/gdb/macrocmd.c
index aca4fdc953..aae3b6d4ea 100644
--- a/gdb/macrocmd.c
+++ b/gdb/macrocmd.c
@@ -522,21 +522,18 @@ expression work together to yield a pre-processed expression."),
&macrolist);
add_alias_cmd ("exp1", "expand-once", no_class, 1, &macrolist);
- add_cmd ("macro", no_class, info_macro_command,
- _("Show the definition of MACRO, and it's source location.\n\
+ add_info ("macro", info_macro_command,
+ _("Show the definition of MACRO, and it's source location.\n\
Usage: info macro [-a|-all] [--] MACRO\n\
Options: \n\
-a, --all Output all definitions of MACRO in the current compilation\
unit.\n\
- -- Specify the end of arguments and the beginning of the MACRO."),
+ -- Specify the end of arguments and the beginning of the MACRO."));
- &infolist);
-
- add_cmd ("macros", no_class, info_macros_command,
- _("Show the definitions of all macros at LINESPEC, or the current \
+ add_info ("macros", info_macros_command,
+ _("Show the definitions of all macros at LINESPEC, or the current \
source location.\n\
-Usage: info macros [LINESPEC]"),
- &infolist);
+Usage: info macros [LINESPEC]"));
add_cmd ("define", no_class, macro_define_command, _("\
Define a new C/C++ preprocessor macro.\n\