From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id kCybBy9l61+ZaQAAWB0awg (envelope-from ) for ; Tue, 29 Dec 2020 12:19:43 -0500 Received: by simark.ca (Postfix, from userid 112) id 19FDB1F0AA; Tue, 29 Dec 2020 12:19:43 -0500 (EST) 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 7304A1E965 for ; Tue, 29 Dec 2020 12:19:41 -0500 (EST) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 2F0663851C0D; Tue, 29 Dec 2020 17:19:41 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 2F0663851C0D DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1609262381; bh=FyN93cqzQQh9yR4pf+k6VVRCIO8pQ1Us0C43msjoBhE=; h=Date:To:In-Reply-To:Subject:References:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To:Cc: From; b=luq4oRprPShglNFnJw3jwAv821A1ePwceL+yorZ1EXebORZaW3c+UjJ6VNr7E+sxo BkMvQTBdGGVfkBN2jy635WpVWx/mHXMG6fyqTfNVygdxLP7HXTX8qdZJJoKLAB2AtI lO67iT9IPyl0jB1XMReQ2ZFv7OCMXJf8dPQolhB8= Received: from eggs.gnu.org (eggs.gnu.org [IPv6:2001:470:142:3::10]) by sourceware.org (Postfix) with ESMTPS id E5BE03857012 for ; Tue, 29 Dec 2020 17:19:38 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org E5BE03857012 Received: from fencepost.gnu.org ([2001:470:142:3::e]:34904) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1kuIeo-0000GN-Kf; Tue, 29 Dec 2020 12:19:38 -0500 Received: from 84.94.185.95.cable.012.net.il ([84.94.185.95]:3788 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1kuIen-0006mt-8a; Tue, 29 Dec 2020 12:19:37 -0500 Date: Tue, 29 Dec 2020 19:19:32 +0200 Message-Id: <83zh1wil7f.fsf@gnu.org> To: Hannes Domani In-Reply-To: <20201229170227.821-3-ssbssa@yahoo.de> (message from Hannes Domani via Gdb-patches on Tue, 29 Dec 2020 18:02:26 +0100) Subject: Re: [PATCH 3/4] Add optional styled argument to gdb.execute References: <20201229170227.821-1-ssbssa@yahoo.de> <20201229170227.821-3-ssbssa@yahoo.de> 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: Eli Zaretskii via Gdb-patches Reply-To: Eli Zaretskii Cc: gdb-patches@sourceware.org Errors-To: gdb-patches-bounces@sourceware.org Sender: "Gdb-patches" > Date: Tue, 29 Dec 2020 18:02:26 +0100 > From: Hannes Domani via Gdb-patches > > This makes it possible to use the colored output of commands, e.g. for > a custom TuiWindow. > > gdb/ChangeLog: > > 2020-12-29 Hannes Domani > > * cli/cli-script.c (execute_control_commands_to_string): Use > styled argument. > * cli/cli-script.h (execute_control_commands_to_string): Add > styled argument. > * python/python.c (execute_gdb_command): Parse "styled" argument. > > gdb/doc/ChangeLog: > > 2020-12-29 Hannes Domani > > * python.texi (Basic Python): Document "styled" argument. OK for the documentation part. Thanks.