From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 30814 invoked by alias); 3 Sep 2018 18:43:28 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 30803 invoked by uid 89); 3 Sep 2018 18:43:28 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_NONE,SPF_HELO_PASS autolearn=ham version=3.3.2 spammy=H*r:esmtpsa X-HELO: gateway36.websitewelcome.com Received: from gateway36.websitewelcome.com (HELO gateway36.websitewelcome.com) (192.185.193.12) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 03 Sep 2018 18:43:27 +0000 Received: from cm16.websitewelcome.com (cm16.websitewelcome.com [100.42.49.19]) by gateway36.websitewelcome.com (Postfix) with ESMTP id 8BEB7400C829B for ; Mon, 3 Sep 2018 12:47:52 -0500 (CDT) Received: from box5379.bluehost.com ([162.241.216.53]) by cmsmtp with SMTP id wtoUfOiNlaSeywtoifro4f; Mon, 03 Sep 2018 13:43:25 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=tromey.com; s=default; h=Message-Id:Date:Subject:To:From:Sender:Reply-To:Cc:MIME-Version :Content-Type:Content-Transfer-Encoding:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: In-Reply-To:References:List-Id:List-Help:List-Unsubscribe:List-Subscribe: List-Post:List-Owner:List-Archive; bh=Psrg02TRPIS63SPSFmf6Nxf7wvZBSZXjYSA6x9UvVN0=; b=DDuqxfF0TVDKo7XFq3c3Hvekl3 vodNWTa0ZgmMFBWI2p12kzj9i3HCqdbPT9Ado1u3/DPU9XJ1dk4tHVBmUK2esIiTDK7Iq8NlPiDIJ 8IjGE4cmKGLpVTM1lw+bEBoi3; Received: from 75-166-85-72.hlrn.qwest.net ([75.166.85.72]:58052 helo=bapiya.Home) by box5379.bluehost.com with esmtpsa (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256) (Exim 4.91) (envelope-from ) id 1fwtoU-002fHL-JY for gdb-patches@sourceware.org; Mon, 03 Sep 2018 13:43:02 -0500 From: Tom Tromey To: gdb-patches@sourceware.org Subject: [RFC 0/3] Some TUI fixes Date: Mon, 03 Sep 2018 18:43:00 -0000 Message-Id: <20180903184300.9961-1-tom@tromey.com> X-SW-Source: 2018-09/txt/msg00020.txt.bz2 I looked at the TUI code for the first time this weekend and came up with a few patches. Here are the ones that seem ready. The first is just a simple cleanup. The second adds ANSI terminal escape sequence parsing, so that colors work in extend prompts. The third deprecates and replaces the tabset command. I didn't know how to test the major patch here. TUI testing seems tricky without writing some gigantic Tcl package to parse escape sequences and render a terminal. Let me know what you think. Tom