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/compile | |
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/compile')
-rw-r--r-- | gdb/compile/compile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/compile/compile.c b/gdb/compile/compile.c index 7ab546c..b11df7d 100644 --- a/gdb/compile/compile.c +++ b/gdb/compile/compile.c @@ -941,7 +941,7 @@ indicate the end of the expression."), _("\ Evaluate a file containing source code.\n\ \n\ -Usage: compile file [-r|-raw] [filename]\n\ +Usage: compile file [-r|-raw] [FILENAME]\n\ -r|-raw: Suppress automatic 'void _gdb_expr () { CODE }' wrapping."), &compile_command_list); set_cmd_completer (c, filename_completer); |