diff options
author | Tom Tromey <tom@tromey.com> | 2018-12-24 14:41:40 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2019-01-04 11:08:02 -0700 |
commit | 48c5e7e239fba27bea134f6cd5f414300b7cd3ac (patch) | |
tree | e058c1be8acc8f11184b84ad9c1483bbc067f57b /gdb/psymtab.c | |
parent | 1b2ed39c3a7ee2870f3d16a510d31e8d5916afbc (diff) | |
download | gdb-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/psymtab.c')
-rw-r--r-- | gdb/psymtab.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/psymtab.c b/gdb/psymtab.c index 950b6fd..f14aae6 100644 --- a/gdb/psymtab.c +++ b/gdb/psymtab.c @@ -2236,8 +2236,8 @@ _initialize_psymtab (void) { add_cmd ("psymbols", class_maintenance, maintenance_print_psymbols, _("\ Print dump of current partial symbol definitions.\n\ -Usage: mt print psymbols [-objfile objfile] [-pc address] [--] [outfile]\n\ - mt print psymbols [-objfile objfile] [-source source] [--] [outfile]\n\ +Usage: mt print psymbols [-objfile OBJFILE] [-pc ADDRESS] [--] [OUTFILE]\n\ + mt print psymbols [-objfile OBJFILE] [-source SOURCE] [--] [OUTFILE]\n\ Entries in the partial symbol table are dumped to file OUTFILE,\n\ or the terminal if OUTFILE is unspecified.\n\ If ADDRESS is provided, dump only the file for that address.\n\ |