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 604833890402 for ; Sat, 6 Mar 2021 18:14:12 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 604833890402 Received: from fencepost.gnu.org ([2001:470:142:3::e]:43786) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1lIbRK-0004wP-Q3; Sat, 06 Mar 2021 13:14:10 -0500 Received: from 84.94.185.95.cable.012.net.il ([84.94.185.95]:2328 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1lIbRK-0006qp-7G; Sat, 06 Mar 2021 13:14:10 -0500 Date: Sat, 06 Mar 2021 20:13:59 +0200 Message-Id: <83sg58up3s.fsf@gnu.org> From: Eli Zaretskii To: Hannes Domani Cc: gdb-patches@sourceware.org In-Reply-To: <20210306174102.21597-3-ssbssa@yahoo.de> (message from Hannes Domani via Gdb-patches on Sat, 6 Mar 2021 18:40:52 +0100) Subject: Re: [PATCH 12/22] Add optional full_window argument to TuiWindow.write References: <20210306174102.21597-1-ssbssa@yahoo.de> <20210306174102.21597-3-ssbssa@yahoo.de> X-Spam-Status: No, score=1.7 required=5.0 tests=BAYES_00, KAM_DMARC_STATUS, RCVD_IN_BARRACUDACENTRAL, SPF_HELO_PASS, SPF_PASS, TXREP autolearn=no autolearn_force=no version=3.4.2 X-Spam-Level: * X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org 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: , X-List-Received-Date: Sat, 06 Mar 2021 18:14:13 -0000 > Date: Sat, 6 Mar 2021 18:40:52 +0100 > From: Hannes Domani via Gdb-patches > > To prevent flickering when first calling erase, then write, this new > argument indicates that the passed string contains the full contents of > the window. This fills every unused cell of the window with a space, so > it's not necessary to call erase beforehand. > --- > gdb/doc/python.texi | 6 +++++- > gdb/python/py-tui.c | 17 ++++++++++++----- > 2 files changed, 17 insertions(+), 6 deletions(-) The documentation part is okay, thanks.