diff options
author | Tom Tromey <tom@tromey.com> | 2018-09-14 07:45:06 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2018-09-16 06:25:17 -0600 |
commit | 65e65158c50dd7e7a5fbc9dcdad9da6df31e01c4 (patch) | |
tree | 18603476b0e440b9c947330c8094c0dc8bbdb815 /gdb/sparc64-tdep.c | |
parent | f4bab6ff22a0ddb799c1c492117a15fe0501ff1e (diff) | |
download | gdb-65e65158c50dd7e7a5fbc9dcdad9da6df31e01c4.zip gdb-65e65158c50dd7e7a5fbc9dcdad9da6df31e01c4.tar.gz gdb-65e65158c50dd7e7a5fbc9dcdad9da6df31e01c4.tar.bz2 |
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.
Diffstat (limited to 'gdb/sparc64-tdep.c')
-rw-r--r-- | gdb/sparc64-tdep.c | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/gdb/sparc64-tdep.c b/gdb/sparc64-tdep.c index f25f554..b1ee6c1 100644 --- a/gdb/sparc64-tdep.c +++ b/gdb/sparc64-tdep.c @@ -449,7 +449,7 @@ do_assign (CORE_ADDR start, size_t bcnt, int version) Command syntax: - adi (examine|x)/count <addr> */ + adi (examine|x)[/COUNT] [ADDR] */ static void adi_examine_command (const char *args, int from_tty) @@ -473,7 +473,7 @@ adi_examine_command (const char *args, int from_tty) if (p != 0 && *p != 0) next_address = parse_and_eval_address (p); if (!cnt || !next_address) - error (_("Usage: adi examine|x[/count] <addr>")); + error (_("Usage: adi examine|x[/COUNT] [ADDR]")); do_examine (next_address, cnt); } @@ -482,11 +482,14 @@ adi_examine_command (const char *args, int from_tty) Command syntax: - adi (assign|a)/count <addr> = <version> */ + adi (assign|a)[/COUNT] ADDR = VERSION */ static void adi_assign_command (const char *args, int from_tty) { + static const char *adi_usage + = N_("Usage: adi assign|a[/COUNT] ADDR = VERSION"); + /* make sure program is active and adi is available */ if (!target_has_execution) error (_("ADI command requires a live process/thread")); @@ -496,13 +499,13 @@ adi_assign_command (const char *args, int from_tty) const char *exp = args; if (exp == 0) - error_no_arg (_("Usage: adi assign|a[/count] <addr> = <version>")); + error_no_arg (_(adi_usage)); char *q = (char *) strchr (exp, '='); if (q) *q++ = 0; else - error (_("Usage: adi assign|a[/count] <addr> = <version>")); + error ("%s", _(adi_usage)); size_t cnt = 1; const char *p = args; @@ -516,7 +519,7 @@ adi_assign_command (const char *args, int from_tty) if (p != 0 && *p != 0) next_address = parse_and_eval_address (p); else - error (_("Usage: adi assign|a[/count] <addr> = <version>")); + error ("%s", _(adi_usage)); int version = 0; if (q != NULL) /* parse version tag */ |