From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Andrea Corallo Newsgroups: gmane.emacs.devel Subject: Re: master f92520d009e 1/2: Don't pause display for pending input Date: Thu, 19 Dec 2024 05:52:15 -0500 Message-ID: References: <173460276132.331083.7195719813421951970@vcs3.savannah.gnu.org> <20241219100603.94BA7C031EB@vcs3.savannah.gnu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="17490"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Gnus/5.13 (Gnus v5.13) Cc: Gerd =?utf-8?Q?M=C3=B6llmann?= To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Thu Dec 19 11:53:01 2024 Return-path: Envelope-to: ged-emacs-devel@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1tOE9M-0004LI-7J for ged-emacs-devel@m.gmane-mx.org; Thu, 19 Dec 2024 11:53:00 +0100 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1tOE8f-0005db-QF; Thu, 19 Dec 2024 05:52:17 -0500 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1tOE8e-0005d8-5l for emacs-devel@gnu.org; Thu, 19 Dec 2024 05:52:16 -0500 Original-Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1tOE8d-0000AE-T5; Thu, 19 Dec 2024 05:52:15 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:Date:References:In-Reply-To:Subject:To: From; bh=i0s41JWnZ506GEwvXPsoEuA563zaXLpSK3JxAwquiwU=; b=FV22dP8EmbQhd5ZD3hin K7CuC967/fsa0KchIDxPuZgWqNEFq5F5DKxOGDMOzgzRt5IPp9ahlKt+YptNhUij51huvApXn8hr8 k9wSzWEUkdfDYTE/Li5EjJuSIjKxRH1XUdQBY8F0CL4EWdaZeB/gKthHY0Tns2xnSH8hqeIOw+6vd fvZRLw0xpDpol7X05xfiAuVRm2SjbWssviGQIC/yaT0FqYbuaWbN/Tv5GIj8P5JLqyUmmcXhSDcoa My7YE8q4b2RCbxSwKgOj5SH1q3uHT3LvbdfWjtAuZtu8vWDk/tA5WV0LJXT5Nnf4zfwHTis0U4Mxp 1rQiXFfn2QMDPg==; Original-Received: from acorallo by fencepost.gnu.org with local (Exim 4.90_1) (envelope-from ) id 1tOE8d-0004yO-FR; Thu, 19 Dec 2024 05:52:15 -0500 In-Reply-To: <20241219100603.94BA7C031EB@vcs3.savannah.gnu.org> (Gerd Moellmann's message of "Thu, 19 Dec 2024 05:06:03 -0500 (EST)") X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Xref: news.gmane.io gmane.emacs.devel:326719 Archived-At: Gerd Moellmann writes: > branch: master > commit f92520d009e1ab8024b03d9d71ecc9820573c040 > Author: Gerd M=C3=B6llmann > Commit: Gerd M=C3=B6llmann > > Don't pause display for pending input > > * src/dispnew.c: Remove display_completed, redisplay_dont_pause, > redisplay-dont-pause was declared obsolete in Emacs 24. Remove anyth= ing > checking pending input, change function signatures accordingly, and so > on. > > * src/keyboard.c (read_char): Don't use redisplay_dont_pause. > * src/minibuf.c (read_minibuf): Use new function signatures. > * src/xdisp.c: Don't check display_completed. Use new API. > > * lisp/subr.el (redisplay-dont-pause): Remove declaration. I think instances of 'Qredisplay_dont_pause' are still present in the codebase so some build configurations are now broken (at least my GNU/Linux one). =3D=3D=3D=3D=3D xterm.c:6372:13: error: =E2=80=98Qredisplay_dont_pause=E2=80=99 undeclared = (first use in this function) 6372 | specbind (Qredisplay_dont_pause, Qt); | ^~~~~~~~~~~~~~~~~~~~~ xterm.c:6372:13: note: each undeclared identifier is reported only once for= each function it appears in xfns.c: In function =E2=80=98Fx_print_frames_dialog=E2=80=99: xfns.c:9967:13: error: =E2=80=98Qredisplay_dont_pause=E2=80=99 undeclared (= first use in this function) 9967 | specbind (Qredisplay_dont_pause, Qt); | ^~~~~~~~~~~~~~~~~~~~~ xfns.c:9967:13: note: each undeclared identifier is reported only once for = each function it appears in =3D=3D=3D=3D=3D Could you have a look? Thanks