From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id 58LgB8+kDmkk5ioAWB0awg (envelope-from ) for ; Fri, 07 Nov 2025 21:02:55 -0500 Received: by simark.ca (Postfix, from userid 112) id 0BB081E04C; Fri, 07 Nov 2025 21:02:55 -0500 (EST) X-Spam-Checker-Version: SpamAssassin 4.0.1 (2024-03-25) on simark.ca X-Spam-Level: X-Spam-Status: No, score=-2.3 required=5.0 tests=ARC_SIGNED,ARC_VALID,BAYES_00, MAILING_LIST_MULTI,RCVD_IN_DNSWL_MED, RCVD_IN_VALIDITY_CERTIFIED_BLOCKED,RCVD_IN_VALIDITY_RPBL_BLOCKED, RCVD_IN_VALIDITY_SAFE_BLOCKED autolearn=ham autolearn_force=no version=4.0.1 Received: from server2.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 ECDSA (prime256v1) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPS id BA07F1E04C for ; Fri, 07 Nov 2025 21:02:53 -0500 (EST) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 16B193858C98 for ; Sat, 8 Nov 2025 02:02:53 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 16B193858C98 Received: from angie.orcam.me.uk (angie.orcam.me.uk [IPv6:2001:4190:8020::34]) by sourceware.org (Postfix) with ESMTP id F25143858D21 for ; Sat, 8 Nov 2025 02:02:14 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org F25143858D21 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=orcam.me.uk Authentication-Results: sourceware.org; spf=none smtp.mailfrom=orcam.me.uk ARC-Filter: OpenARC Filter v1.0.0 sourceware.org F25143858D21 Authentication-Results: server2.sourceware.org; arc=none smtp.remote-ip=2001:4190:8020::34 ARC-Seal: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1762567335; cv=none; b=olaT4KKjpwTETzOcsrwGDABndCVS/QJP0PHFQoIuZrCWtAuzpbiH0ae+I+z+FF1DNekqHMPAlxyUjXXBQPcF5UhNxqLjhlrk81oUOjfJhMZl0wNgmfDfUuDMHjNkY+okUaD2rADkT7qVKmSywkCkMvWQtkvvY/QX6sO2N2YODi8= ARC-Message-Signature: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1762567335; c=relaxed/simple; bh=AXo05omVj+KkMF98KbW5hM//CLbkHZ+D1h9dnA8UtHQ=; h=Date:From:To:Subject:Message-ID:MIME-Version; b=WxrLr6chjoozzA2Ymg7at9MoDp/iQ/79zMmwdkC5qI1YMs2OtDSARyua8SSKczG1HFiXnd4zkl9I0AOhplbpi7A2ZHXRmjiNq9WPrPQpRZZ9pV1hZubVuNTMQ1r22hIhqMjr/TKdcjpPYqxUXrnW5zGhAeT7+E5omJI8wcG4bVI= ARC-Authentication-Results: i=1; server2.sourceware.org DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org F25143858D21 Received: by angie.orcam.me.uk (Postfix, from userid 500) id 6FB2292009C; Sat, 8 Nov 2025 03:02:14 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by angie.orcam.me.uk (Postfix) with ESMTP id 6236792009B; Sat, 8 Nov 2025 02:02:14 +0000 (GMT) Date: Sat, 8 Nov 2025 02:02:14 +0000 (GMT) From: "Maciej W. Rozycki" To: Hannes Domani cc: "gdb-patches@sourceware.org" Subject: Re: [PATCH 1/2] gdb: introduce command "info architecture" In-Reply-To: <17742835.7142425.1762531551944@mail.yahoo.com> Message-ID: References: <20251106194514.1857177-1-guinevere@redhat.com> <20251106194514.1857177-2-guinevere@redhat.com> <17742835.7142425.1762531551944@mail.yahoo.com> User-Agent: Alpine 2.21 (DEB 202 2017-01-01) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8BIT X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.30 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: gdb-patches-bounces~public-inbox=simark.ca@sourceware.org On Fri, 7 Nov 2025, Hannes Domani wrote: > > BTW is there a way to globally disable styling by default?  I find it > > irritating (it distracts me and hurts my eyes) as I do having to type: > >  > > (gdb) set style enabled off > >  > > every time.  Placing the command in $HOME/.config/gdb/gdbinit or > > $HOME/.gdbinit does nothing, the welcome message is still a disturbing > > mixture of colours. > > Try putting it into $HOME/.gdbearlyinit This helps, thanks! Obviously I've missed the addition of this fairly recent facility. Maciej