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 3B2C63858C2C for ; Mon, 17 Apr 2023 17:19:03 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 3B2C63858C2C 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 1poSVK-0007kW-Hl; Mon, 17 Apr 2023 13:19:02 -0400 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=iAVJJt06zpBNC7Wa9lNseD0GZim7XWqFppQF3hb9xZk=; b=Ye7Y69Sr6JRn qjZICLzezqDL9gl2IQDJrWIiXZ5DhgmISZySJrxyXzuGl3Tx9QCtzoBHY6R9A21EVz9jr14bV2MeO /ATA1kdDHTGUC4uc1CCJT6tNH9p8uKZAk+04KsnSP72QuOHtLGTa4HLZ2N7fFRDBKgImc3L+cAuhe IbOzPbQRBZuyEuy35yd1TRRkWeieVTFSTOLXgPPL+XRkg3elxmFNz7hXv1c9c+a6Yn23k2au00UUI mYEYpqZjJRZSXAi7P9nJ/uKAgYjBbCKlT3nbkXqcP+Y3pji1XCrCHDTNAQzsqQq/WEAn3d5l8X1hk SjLGRqyXMJgFFpGp0qqdxQ==; 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 1poSVJ-0003qO-LN; Mon, 17 Apr 2023 13:19:01 -0400 Date: Mon, 17 Apr 2023 20:19:08 +0300 Message-Id: <83edoia0kz.fsf@gnu.org> From: Eli Zaretskii To: Tom de Vries Cc: gdb-patches@sourceware.org In-Reply-To: <20230417140906.25341-1-tdevries@suse.de> (message from Tom de Vries via Gdb-patches on Mon, 17 Apr 2023 16:09:06 +0200) Subject: Re: [PATCH] [gdb/cli] Add maint info screen References: <20230417140906.25341-1-tdevries@suse.de> X-Spam-Status: No, score=1.7 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,T_SCC_BODY_TEXT_LINE 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: > Date: Mon, 17 Apr 2023 16:09:06 +0200 > From: Tom de Vries via Gdb-patches > > gdb/doc/gdb.texinfo | 7 +++++ > gdb/utils.c | 70 +++++++++++++++++++++++++++++++++++++++++++-- > 2 files changed, 75 insertions(+), 2 deletions(-) Thanks for working on this. > --- a/gdb/doc/gdb.texinfo > +++ b/gdb/doc/gdb.texinfo > @@ -41363,6 +41363,13 @@ This option is @samp{on} by default for supported architectures. > This option is useful for debugging @value{GDBN}'s use of the Pygments > library when @value{GDBN} is built for an architecture that supports > styling with the builtin disassembler > + > +@kindex maint info screen > +@cindex Show screen characteristics ^^^^ Please avoid capital letters in index entries as much as possible. That's because differences in letter-case can cause the index entries be sorted in different order depending on the locale where the manual is built, and we want to avoid this locale dependency if possible. > +@item maint info screen > +Print various characteristics of the screen, such as various notions > +of width and height. Maybe say what will this be useful for? Reviewed-By: Eli Zaretskii