aboutsummaryrefslogtreecommitdiff
path: root/gdb/ax-gdb.c
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2018-12-24 14:41:40 -0700
committerTom Tromey <tom@tromey.com>2019-01-04 11:08:02 -0700
commit48c5e7e239fba27bea134f6cd5f414300b7cd3ac (patch)
treee058c1be8acc8f11184b84ad9c1483bbc067f57b /gdb/ax-gdb.c
parent1b2ed39c3a7ee2870f3d16a510d31e8d5916afbc (diff)
downloadgdb-48c5e7e239fba27bea134f6cd5f414300b7cd3ac.zip
gdb-48c5e7e239fba27bea134f6cd5f414300b7cd3ac.tar.gz
gdb-48c5e7e239fba27bea134f6cd5f414300b7cd3ac.tar.bz2
Use upper case for more metasyntactic variables in gdb
I noticed a few places where a Usage line in gdb did not use upper case for metasyntactic variables. This patch fixes all the instances I found. Tested on x86-64 Fedora 28. gdb/ChangeLog 2019-01-04 Tom Tromey <tom@tromey.com> * compile/compile.c (_initialize_compile): Use upper case for metasyntactic variables. * symmisc.c (_initialize_symmisc): Use upper case for metasyntactic variables. * psymtab.c (_initialize_psymtab): Use upper case for metasyntactic variables. * demangle.c (demangle_command): Use upper case for metasyntactic variables. (_initialize_demangler): Likewise. * ax-gdb.c (_initialize_ax_gdb): Use upper case for metasyntactic variables.
Diffstat (limited to 'gdb/ax-gdb.c')
-rw-r--r--gdb/ax-gdb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/ax-gdb.c b/gdb/ax-gdb.c
index eacec74..88e9b43 100644
--- a/gdb/ax-gdb.c
+++ b/gdb/ax-gdb.c
@@ -2751,7 +2751,7 @@ _initialize_ax_gdb (void)
add_cmd ("agent", class_maintenance, agent_command,
_("\
Translate an expression into remote agent bytecode for tracing.\n\
-Usage: maint agent [-at location,] EXPRESSION\n\
+Usage: maint agent [-at LOCATION,] EXPRESSION\n\
If -at is given, generate remote agent bytecode for this location.\n\
If not, generate remote agent bytecode for current frame pc address."),
&maintenancelist);
@@ -2759,7 +2759,7 @@ If not, generate remote agent bytecode for current frame pc address."),
add_cmd ("agent-eval", class_maintenance, agent_eval_command,
_("\
Translate an expression into remote agent bytecode for evaluation.\n\
-Usage: maint agent-eval [-at location,] EXPRESSION\n\
+Usage: maint agent-eval [-at LOCATION,] EXPRESSION\n\
If -at is given, generate remote agent bytecode for this location.\n\
If not, generate remote agent bytecode for current frame pc address."),
&maintenancelist);