Use expression completer for "maint print type"

I happened to notice that expression completion did not work correctly
for "maint print type".  This patch adds the appropriate completer
there.

gdb/ChangeLog
2020-12-07  Tom Tromey  <tromey@adacore.com>

	* maint.c (_initialize_maint_cmds): Use expression command
	completer for "maint print type".
This commit is contained in:
Tom Tromey
2020-12-07 07:33:46 -07:00
parent cd8d2039b0
commit a4915e8d6c
2 changed files with 7 additions and 1 deletions

View File

@@ -1193,11 +1193,12 @@ If nonzero, will cause the execution space for each command to be\n\
displayed, following the command's output."),
&maintenancelist);
add_cmd ("type", class_maintenance, maintenance_print_type, _("\
cmd = add_cmd ("type", class_maintenance, maintenance_print_type, _("\
Print a type chain for a given symbol.\n\
For each node in a type chain, print the raw data for each member of\n\
the type structure, and the interpretation of the data."),
&maintenanceprintlist);
set_cmd_completer (cmd, expression_completer);
add_cmd ("statistics", class_maintenance, maintenance_print_statistics,
_("Print statistics about internal gdb state."),