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/symmisc.c | |
parent | 1b2ed39c3a7ee2870f3d16a510d31e8d5916afbc (diff) | |
download | fsf-binutils-gdb-48c5e7e239fba27bea134f6cd5f414300b7cd3ac.zip fsf-binutils-gdb-48c5e7e239fba27bea134f6cd5f414300b7cd3ac.tar.gz fsf-binutils-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/symmisc.c')
-rw-r--r-- | gdb/symmisc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/symmisc.c b/gdb/symmisc.c index 3e67926..46c8206 100644 --- a/gdb/symmisc.c +++ b/gdb/symmisc.c @@ -1072,8 +1072,8 @@ _initialize_symmisc (void) add_cmd ("symbols", class_maintenance, maintenance_print_symbols, _("\ Print dump of current symbol definitions.\n\ -Usage: mt print symbols [-pc address] [--] [outfile]\n\ - mt print symbols [-objfile objfile] [-source source] [--] [outfile]\n\ +Usage: mt print symbols [-pc ADDRESS] [--] [OUTFILE]\n\ + mt print symbols [-objfile OBJFILE] [-source SOURCE] [--] [OUTFILE]\n\ Entries in the full 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\ @@ -1083,7 +1083,7 @@ If OBJFILE is provided, dump only that file's minimal symbols."), add_cmd ("msymbols", class_maintenance, maintenance_print_msymbols, _("\ Print dump of current minimal symbol definitions.\n\ -Usage: mt print msymbols [-objfile objfile] [--] [outfile]\n\ +Usage: mt print msymbols [-objfile OBJFILE] [--] [OUTFILE]\n\ Entries in the minimal symbol table are dumped to file OUTFILE,\n\ or the terminal if OUTFILE is unspecified.\n\ If OBJFILE is provided, dump only that file's minimal symbols."), |