From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id 7Y4dJ1/7eV+tawAAWB0awg (envelope-from ) for ; Sun, 04 Oct 2020 12:42:07 -0400 Received: by simark.ca (Postfix, from userid 112) id 927DD1EE0F; Sun, 4 Oct 2020 12:42:07 -0400 (EDT) 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 36D411E58E for ; Sun, 4 Oct 2020 12:42:06 -0400 (EDT) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id B20603851C0D; Sun, 4 Oct 2020 16:42:05 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org B20603851C0D DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1601829725; bh=iY3H1iBY34pLiA4nlstOtn20ib/aaHtsOhvlIq75dd0=; h=Subject:To:References:Date:In-Reply-To:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To:Cc: From; b=daRzJTgQWQ1FDkEnRuo8ZG2e3I3oZeu+a5OcKL6jpSPNXoy62bd7NvleCJuWg3VhA posN2rXn4MwKYxKtyGaIk+LJss4Bvz7hvAJdarlH0ZDCppUOfGxrjuG/UzvL0lumqz FwdnDrpqxMMh5QTsl/27KPv+yoPe0vfQeD+k/BBU= Received: from smtp.polymtl.ca (smtp.polymtl.ca [132.207.4.11]) by sourceware.org (Postfix) with ESMTPS id 5E68E385E444 for ; Sun, 4 Oct 2020 16:42:03 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 5E68E385E444 Received: from simark.ca (simark.ca [158.69.221.121]) (authenticated bits=0) by smtp.polymtl.ca (8.14.7/8.14.7) with ESMTP id 094GfkUR017682 (version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Sun, 4 Oct 2020 12:41:51 -0400 DKIM-Filter: OpenDKIM Filter v2.11.0 smtp.polymtl.ca 094GfkUR017682 Received: from [10.0.0.11] (173-246-6-90.qc.cable.ebox.net [173.246.6.90]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPSA id 584A91E58E; Sun, 4 Oct 2020 12:41:46 -0400 (EDT) Subject: Re: [PATCH 2/2] gdb: add doc for "set/show debug event-loop" To: Eli Zaretskii References: <20201003001437.3066505-1-simon.marchi@polymtl.ca> <20201003001437.3066505-2-simon.marchi@polymtl.ca> <83zh53g1a8.fsf@gnu.org> Message-ID: <5b5d815b-3443-4424-d8b3-ca2346236c17@polymtl.ca> Date: Sun, 4 Oct 2020 12:41:45 -0400 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.12.0 MIME-Version: 1.0 In-Reply-To: <83zh53g1a8.fsf@gnu.org> Content-Type: text/plain; charset=utf-8 Content-Language: fr Content-Transfer-Encoding: 7bit X-Poly-FromMTA: (simark.ca [158.69.221.121]) at Sun, 4 Oct 2020 16:41:46 +0000 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: Simon Marchi via Gdb-patches Reply-To: Simon Marchi Cc: gdb-patches@sourceware.org Errors-To: gdb-patches-bounces@sourceware.org Sender: "Gdb-patches" On 2020-10-03 4:29 a.m., Eli Zaretskii wrote: >> Date: Fri, 2 Oct 2020 20:14:37 -0400 >> From: Simon Marchi via Gdb-patches >> >> I forgot that "set/show debug" commands are listed in the doc and in >> NEWS, so here they are. >> >> gdb/doc/ChangeLog: >> >> * gdb.texinfo (Debugging Output): Add set/show debug event-loop. >> >> gdb/ChangeLog: >> >> * NEWS: Mention set/show debug event-loop. > > Thanks. > >> +@item set debug event-loop >> +@cindex event-loop debugging >> +Controls output of debugging info about the event loop. The possible >> +values are off, all (shows all debugging info) and all-except-ui (shows > > I think the values should be in @samp, otherwise they look like plain > words, and the sentence is confusing then. Excellent, I didn't know how to give that style. >> +@item show debug event-loop >> +Displays the current state of displaying debugging info about the event > ^^^^^^^^ > "Shows" will read better here, since "Displays the state of > displaying" reuses the same word. Will do. Note that I just copied another item, there are a few others that use this pattern and could be changed. > OK with those fixed. Thanks, I'll fix and push. Simon