From patchwork Thu Apr 4 22:50:24 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tom Tromey X-Patchwork-Id: 32170 Received: (qmail 104369 invoked by alias); 4 Apr 2019 22:50:31 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Delivered-To: mailing list gdb-patches@sourceware.org Received: (qmail 104359 invoked by uid 89); 4 Apr 2019 22:50:30 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-22.7 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RCVD_IN_DNSWL_NONE, SPF_PASS autolearn=ham version=3.3.1 spammy=tromeyadacorecom, tromey@adacore.com, sk:tromey, sk:tromey@ X-HELO: rock.gnat.com Received: from rock.gnat.com (HELO rock.gnat.com) (205.232.38.15) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 04 Apr 2019 22:50:29 +0000 Received: from localhost (localhost.localdomain [127.0.0.1]) by filtered-rock.gnat.com (Postfix) with ESMTP id 09BDF560BC; Thu, 4 Apr 2019 18:50:28 -0400 (EDT) Received: from rock.gnat.com ([127.0.0.1]) by localhost (rock.gnat.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id BUXK+DyY0Tzc; Thu, 4 Apr 2019 18:50:27 -0400 (EDT) Received: from murgatroyd.Home (174-29-37-56.hlrn.qwest.net [174.29.37.56]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by rock.gnat.com (Postfix) with ESMTPSA id A9B50560BB; Thu, 4 Apr 2019 18:50:27 -0400 (EDT) From: Tom Tromey To: gdb-patches@sourceware.org Cc: Tom Tromey Subject: [PATCH] Use upper-case for metasyntactic in gdbserver help Date: Thu, 4 Apr 2019 16:50:24 -0600 Message-Id: <20190404225024.14406-1-tromey@adacore.com> MIME-Version: 1.0 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-04 Tom Tromey * server.c (gdbserver_usage): Use upper-case for metasyntactic variables. --- gdb/gdbserver/ChangeLog | 5 +++++ gdb/gdbserver/server.c | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/gdb/gdbserver/server.c b/gdb/gdbserver/server.c index 25c62aad830..bfd120d2fb3 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"