diff options
author | Tom Tromey <tromey@adacore.com> | 2019-04-04 16:48:28 -0600 |
---|---|---|
committer | Tom Tromey <tromey@adacore.com> | 2019-04-05 07:29:24 -0600 |
commit | 227a9e65b91958cb414ade82c614717579d8849e (patch) | |
tree | b4bc9a299ed8928600c564a4f37299a547f038b0 /gdb/gdbserver | |
parent | 699bd4cfa8895d0767d491a3e44ac09d3f4d1801 (diff) | |
download | gdb-227a9e65b91958cb414ade82c614717579d8849e.zip gdb-227a9e65b91958cb414ade82c614717579d8849e.tar.gz gdb-227a9e65b91958cb414ade82c614717579d8849e.tar.bz2 |
Use upper-case for metasyntactic in gdbserver help
I noticed that "gdbserver --help" contains a few metasyntactic
variables that aren't in upper-case. This patch fixes them to conform
to the GNU standard.
gdb/gdbserver/ChangeLog
2019-04-05 Tom Tromey <tromey@adacore.com>
* server.c (gdbserver_usage): Use upper-case for metasyntactic
variables.
Diffstat (limited to 'gdb/gdbserver')
-rw-r--r-- | gdb/gdbserver/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/gdbserver/server.c | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gdb/gdbserver/ChangeLog b/gdb/gdbserver/ChangeLog index 97bc326..a1627ce 100644 --- a/gdb/gdbserver/ChangeLog +++ b/gdb/gdbserver/ChangeLog @@ -1,3 +1,8 @@ +2019-04-05 Tom Tromey <tromey@adacore.com> + + * server.c (gdbserver_usage): Use upper-case for metasyntactic + variables. + 2019-03-28 Alan Hayward <alan.hayward@arm.com> * linux-low.c (AT_HWCAP2): Add define if not already included. diff --git a/gdb/gdbserver/server.c b/gdb/gdbserver/server.c index 25c62aa..bfd120d 100644 --- a/gdb/gdbserver/server.c +++ b/gdb/gdbserver/server.c @@ -3458,14 +3458,14 @@ gdbserver_usage (FILE *stream) "Debug options:\n" "\n" " --debug Enable general debugging output.\n" - " --debug-format=opt1[,opt2,...]\n" + " --debug-format=OPT1[,OPT2,...]\n" " Specify extra content in debugging output.\n" " Options:\n" " all\n" " none\n" " timestamp\n" " --remote-debug Enable remote protocol debugging output.\n" - " --disable-packet=opt1[,opt2,...]\n" + " --disable-packet=OPT1[,OPT2,...]\n" " Disable support for RSP packets or features.\n" " Options:\n" " vCont, Tthread, qC, qfThreadInfo and \n" |