Use GNU style for metasyntactic variables in gdb
I searched for other spots that did not use the GNU style for metasyntactic syntactic variables. This patch fixes most of the ones I found in gdb proper. There are a few remaining in MI, but I was unsure whether those should be touched. gdb/ChangeLog 2018-09-16 Tom Tromey <tom@tromey.com> * top.c (new_ui_command): Use GNU style for metasyntactic variables. * breakpoint.c (stopat_command): Use GNU style for metasyntactic variables. * maint.c (maintenance_translate_address): Remove "<>" around text. * interps.c (interpreter_exec_cmd): Use GNU style for metasyntactic variables. * nto-procfs.c (nto_procfs_target_info): Use GNU style for metasyntactic variables. * tracepoint.c (tfind_range_command): Use GNU style for metasyntactic variables. (tfind_outside_command): Likewise. (_initialize_tracepoint): Likewise. * remote.c (extended_remote_target::create_inferior): Use GNU style for metasyntactic variables. * sparc64-tdep.c (adi_examine_command): Use GNU style for metasyntactic variables. (adi_assign_command): Likewise. gdb/testsuite/ChangeLog 2018-09-16 Tom Tromey <tom@tromey.com> * gdb.base/new-ui.exp (do_execution_tests): Update. * gdb.base/dbx.exp (test_breakpoints): Update.
This commit is contained in:
parent
f4bab6ff22
commit
65e65158c5
12 changed files with 48 additions and 18 deletions
|
@ -2427,7 +2427,7 @@ tfind_range_command (const char *args, int from_tty)
|
|||
|
||||
if (args == 0 || *args == 0)
|
||||
{ /* XXX FIXME: what should default behavior be? */
|
||||
printf_filtered ("Usage: tfind range <startaddr>,<endaddr>\n");
|
||||
printf_filtered ("Usage: tfind range STARTADDR, ENDADDR\n");
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -2461,7 +2461,7 @@ tfind_outside_command (const char *args, int from_tty)
|
|||
|
||||
if (args == 0 || *args == 0)
|
||||
{ /* XXX FIXME: what should default behavior be? */
|
||||
printf_filtered ("Usage: tfind outside <startaddr>,<endaddr>\n");
|
||||
printf_filtered ("Usage: tfind outside STARTADDR, ENDADDR\n");
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -4031,12 +4031,12 @@ No argument means forward by one frame; '-' means backward by one frame."),
|
|||
|
||||
add_cmd ("outside", class_trace, tfind_outside_command, _("\
|
||||
Select a trace frame whose PC is outside the given range (exclusive).\n\
|
||||
Usage: tfind outside addr1, addr2"),
|
||||
Usage: tfind outside ADDR1, ADDR2"),
|
||||
&tfindlist);
|
||||
|
||||
add_cmd ("range", class_trace, tfind_range_command, _("\
|
||||
Select a trace frame whose PC is in the given range (inclusive).\n\
|
||||
Usage: tfind range addr1,addr2"),
|
||||
Usage: tfind range ADDR1, ADDR2"),
|
||||
&tfindlist);
|
||||
|
||||
add_cmd ("line", class_trace, tfind_line_command, _("\
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue