From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp-out2.suse.de (smtp-out2.suse.de [195.135.220.29]) by sourceware.org (Postfix) with ESMTPS id 9B26A3858431 for ; Fri, 2 Jun 2023 15:56:34 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 9B26A3858431 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=suse.de Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=suse.de Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by smtp-out2.suse.de (Postfix) with ESMTPS id CC4431FDF2 for ; Fri, 2 Jun 2023 15:56:33 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_rsa; t=1685721393; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=Qt+0yUJ0/5LKPXbubCvvp/ezFsvQefalE9sG9XZ7oaY=; b=Nw4kmUUHbldF4sJez4uvn/xtP0Yma0QQ55l6cb32smlR3ApdJNHpqDymNgxrQiSZiPZHtz xMyicPle/IwrusEZuwm7DzcNqtvVA0S5NRB40T5k1RPN+mToBDJeQjbzqBvHLcbreceLKX kz/ogm9PB3Ks6OTbIBvD/8tWevII0HU= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_ed25519; t=1685721393; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=Qt+0yUJ0/5LKPXbubCvvp/ezFsvQefalE9sG9XZ7oaY=; b=jUkIhdAMEZV0zditdBB8Fz++DmzHwofkbCEXm8471SVHM0dr5DXbMmy8NM3bcsOFFAC+dD omKyVQ1hBZf5spCA== Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by imap2.suse-dmz.suse.de (Postfix) with ESMTPS id B8AD2133E6 for ; Fri, 2 Jun 2023 15:56:33 +0000 (UTC) Received: from dovecot-director2.suse.de ([192.168.254.65]) by imap2.suse-dmz.suse.de with ESMTPSA id oAgILDERemQ6ewAAMHmgww (envelope-from ) for ; Fri, 02 Jun 2023 15:56:33 +0000 From: Tom de Vries To: gdb-patches@sourceware.org Subject: [PATCH 05/10] [gdb/cli] Fix help text of maint info target-sections Date: Fri, 2 Jun 2023 17:56:34 +0200 Message-Id: <20230602155639.28245-6-tdevries@suse.de> X-Mailer: git-send-email 2.35.3 In-Reply-To: <20230602155639.28245-1-tdevries@suse.de> References: <20230602155639.28245-1-tdevries@suse.de> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-12.4 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,GIT_PATCH_0,SPF_HELO_NONE,SPF_PASS,TXREP,T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: I noticed a typo: ... (gdb) help maint info target-sections List GDB's internal section table. Print the current targets section list. This is a sub-set of all sections, from all objects currently loaded. Usually the ALLOC sectoins. ... Fix this by using "sections". --- gdb/maint.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gdb/maint.c b/gdb/maint.c index c5f2e5cdce0..5d52dfafd06 100644 --- a/gdb/maint.c +++ b/gdb/maint.c @@ -1259,7 +1259,7 @@ List GDB's internal section table.\n\ \n\ Print the current targets section list. This is a sub-set of all\n\ sections, from all objects currently loaded. Usually the ALLOC\n\ -sectoins."), +sections."), &maintenanceinfolist); add_basic_prefix_cmd ("print", class_maintenance, -- 2.35.3