From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id i0yEFBDVu18ETQAAWB0awg (envelope-from ) for ; Mon, 23 Nov 2020 10:28:16 -0500 Received: by simark.ca (Postfix, from userid 112) id 45C581F0AB; Mon, 23 Nov 2020 10:28:16 -0500 (EST) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on simark.ca X-Spam-Level: X-Spam-Status: No, score=-1.1 required=5.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,MAILING_LIST_MULTI,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.2 Received: from sourceware.org (server2.sourceware.org [8.43.85.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPS id D1DD11E776 for ; Mon, 23 Nov 2020 10:28:13 -0500 (EST) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 3888C385481C; Mon, 23 Nov 2020 15:28:13 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 3888C385481C DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1606145293; bh=fSiMbqSFMby9pZt6vrubEy6r73xczvHGHXRaMiHMyLQ=; h=Date:To:In-Reply-To:Subject:References:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To:Cc: From; b=yPyQ+6qUNVtUKhfazICIikWqTb28fpwIBtOOK/qL+l+O0s/gwB//SEOS3/Q3jNkSx bNjzpvQj22HrvfqCZ4QJRhY9vSUqoTPPYHjzBOi50dJuCHj8P8HtnyQe7dTDOVtym2 y1BvnNep1g4NncicoSNvNPaIOsKp7ErZ8UHSx3JU= Received: from eggs.gnu.org (eggs.gnu.org [IPv6:2001:470:142:3::10]) by sourceware.org (Postfix) with ESMTPS id B5965385481C for ; Mon, 23 Nov 2020 15:28:10 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org B5965385481C Received: from fencepost.gnu.org ([2001:470:142:3::e]:45787) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1khDlB-0001Qm-4s; Mon, 23 Nov 2020 10:28:09 -0500 Received: from [176.228.60.248] (port=1739 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1khDl9-0008EZ-KC; Mon, 23 Nov 2020 10:28:08 -0500 Date: Mon, 23 Nov 2020 17:28:03 +0200 Message-Id: <83eekkw0sc.fsf@gnu.org> To: Andrew Burgess In-Reply-To: (message from Andrew Burgess on Mon, 23 Nov 2020 10:39:36 +0000) Subject: Re: [PATCH 1/2] gdb: introduce new 'maint flush ' prefix command References: X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , From: Eli Zaretskii via Gdb-patches Reply-To: Eli Zaretskii Cc: gdb-patches@sourceware.org Errors-To: gdb-patches-bounces@sourceware.org Sender: "Gdb-patches" > From: Andrew Burgess > Date: Mon, 23 Nov 2020 10:39:36 +0000 > > diff --git a/gdb/NEWS b/gdb/NEWS > index d1f721c3953..b07b054223f 100644 > --- a/gdb/NEWS > +++ b/gdb/NEWS > @@ -27,6 +27,11 @@ set debug event-loop > show debug event-loop > Control the display of debug output about GDB's event loop. > > +maintenance flush symbol-cache > +maintenance flush register-cache > + These new commands are equivalent to the already existing commands > + 'maintenance flush-symbol-cache' and 'flushregs' respectively. > + > * Changed commands This part is OK. > +@kindex maint flush symbol-cache > @kindex maint flush-symbol-cache > @cindex symbol cache, flushing > +@item maint flush symbol-cache > @item maint flush-symbol-cache You cannot have more than 1 @item in a row. All but the first one have to be @itemx instead. > +@kindex maint flush register-cache > @kindex flushregs > +@cindex register cache, flushing > +@item maint flush register-cache > @item flushregs Same here. The documentation parts are okay with this nit fixed. Thanks.