From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from eggs.gnu.org (eggs.gnu.org [IPv6:2001:470:142:3::10]) by sourceware.org (Postfix) with ESMTPS id 0130E3858C5F for ; Thu, 16 Feb 2023 11:43:32 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 0130E3858C5F Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=gnu.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=gnu.org Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pScfj-0001JE-Fo; Thu, 16 Feb 2023 06:43:31 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=References:Subject:In-Reply-To:To:From:Date: mime-version; bh=HWmBjul7gT08cmr+1VStosJM9zJc9WxVtIv3DcDB7VE=; b=ULgjNT3GsFuc VSCB4wU3ktN39jFqob4ZLoheCTsKB2DSPjS3CeHxzhUlKCfqCIgxVn1MgXad0POsx3ZemZaruIgEC BqgIUZXDb5zhwrbIuce96hi28Igy2/sfCrv4x+U6/88Xurx7f8JtboSzjO6WDF/s0x3ClnwNTkmkG uzE7e6ooGwH9pF5rObDN7oRjJhFXzmZEtSl1fWfuCB5I7RYyST2DtoEEJPHOcjrmX4nHv3wu2keCG ywmiyXHvGFJVOFoh6WcDU+jMyHCctEuf5A4uYNVXgrgr4mZm5qAeqCSPJklZQk2lZ3GJtcpwzitUg InGBkbn7B26GYj0lZeNPrQ==; Received: from [87.69.77.57] (helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pScfi-0006K8-TC; Thu, 16 Feb 2023 06:43:31 -0500 Date: Thu, 16 Feb 2023 13:43:25 +0200 Message-Id: <835yc196oy.fsf@gnu.org> From: Eli Zaretskii To: Andrew Burgess Cc: gdb-patches@sourceware.org In-Reply-To: <472d480eb7923c863e97564a6d70e1bd8dfb6ef5.1676539697.git.aburgess@redhat.com> (message from Andrew Burgess via Gdb-patches on Thu, 16 Feb 2023 09:28:29 +0000) Subject: Re: [PATCH] gdb/doc: Consistency fixes for GDB/MI documentation References: <472d480eb7923c863e97564a6d70e1bd8dfb6ef5.1676539697.git.aburgess@redhat.com> X-Spam-Status: No, score=1.9 required=5.0 tests=BAYES_00,DKIMWL_WL_HIGH,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,RCVD_IN_BARRACUDACENTRAL,SPF_HELO_PASS,SPF_PASS,TXREP autolearn=no autolearn_force=no version=3.4.6 X-Spam-Level: * X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: > Cc: Andrew Burgess > Date: Thu, 16 Feb 2023 09:28:29 +0000 > From: Andrew Burgess via Gdb-patches > > I noticed two inconsistencies in the GDB/MI documentation, which this > commit addresses: > > 1. Each MI command is introduced like this: > > @subheading The @code{-command-name} Command > > Except for a few of the tracing command, which just use: > > @subheading -command-name > > In this commit I've updated all these trace commands to use the > more common format. > > 2. Each MI command starts with a @subheading, and then the details > of that command are split up using multiple @subsubheading > entries. > > Except for a few commands which use @subheading for the top-level > command, and then continue to use @subheading for each part of > the command description. > > In this commit I've updated these to use @subsubheading where > appropriate. > --- > gdb/doc/gdb.texinfo | 54 ++++++++++++++++++++++----------------------- > 1 file changed, 27 insertions(+), 27 deletions(-) Thanks, this belongs to the "obvious fix" department, so please install. Approved-By: Eli Zaretskii