Re: [PATCH] Cygwin: pty: Prevent meaningless ResizePseudoConsole() calls.

2020-05-28 Thread Corinna Vinschen
On May 28 22:49, Takashi Yano via Cygwin-patches wrote: > - This patch prevents to call ResizePseudoConsole() unless the pty > is resized. > --- > winsup/cygwin/fhandler_tty.cc | 18 +- > 1 file changed, 9 insertions(+), 9 deletions(-) > > diff --git

[PATCH] Cygwin: pty: Prevent meaningless ResizePseudoConsole() calls.

2020-05-28 Thread Takashi Yano via Cygwin-patches
- This patch prevents to call ResizePseudoConsole() unless the pty is resized. --- winsup/cygwin/fhandler_tty.cc | 18 +- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/winsup/cygwin/fhandler_tty.cc b/winsup/cygwin/fhandler_tty.cc index f29a2c214..b091765b3 100644

Re: [PATCH] Cygwin: pty: Fix a bug in free_attached_console().

2020-05-28 Thread Corinna Vinschen
On May 28 12:43, Takashi Yano via Cygwin-patches wrote: > - After commit 7659ff0f5afd751f42485f2684c799c5f37b0fb9, nohup does > not work as expected. This patch fixes the issue. > > Addresses: > https://cygwin.com/pipermail/cygwin-developers/2020-May/011885.html > --- >