From 2e9b3ceb95597e2612b048f20fa006d123090e27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Tue, 18 Oct 2022 18:28:51 +0200 Subject: [PATCH] =?UTF-8?q?fdm=5Fptmx():=20regression:=20don=E2=80=99t=20r?= =?UTF-8?q?eturn=20false=20when=20an=20interactive=20resize=20is=20in=20pr?= =?UTF-8?q?ogress?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- terminal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terminal.c b/terminal.c index 380f0d4a..b17731d3 100644 --- a/terminal.c +++ b/terminal.c @@ -263,7 +263,7 @@ fdm_ptmx(struct fdm *fdm, int fd, int events, void *data) * temporary one - all changes done to it will be lost when * the interactive resize ends. */ - return 0; + return true; } uint8_t buf[24 * 1024];