]> sourceware.org Git - newlib-cygwin.git/commitdiff
Cygwin: pty: Disable ResizePseudoConsole() if stdout is redirected.
authorTakashi Yano via Cygwin-patches <cygwin-patches@cygwin.com>
Tue, 27 Oct 2020 08:26:34 +0000 (17:26 +0900)
committerCorinna Vinschen <corinna@vinschen.de>
Tue, 27 Oct 2020 09:03:42 +0000 (10:03 +0100)
- Calling ResizePseudoConsole() generates some escape sequences.
  Due to this behaviour, if the output of non-cygwin app is piped
  to less, screen is sometimes distorted when the screen is resized.
  With this patch, ResizePseudoConsole() is not called if stdout is
  redirected.

winsup/cygwin/fhandler_tty.cc
winsup/cygwin/tty.cc
winsup/cygwin/tty.h

index c5a081ebdda25f1ff7f42df762cb825fb15ea7c7..600de085cea8d035d4b48901c05c9596cf2e46e1 100644 (file)
@@ -1511,7 +1511,7 @@ fhandler_pty_common::resize_pseudo_console (struct winsize *ws)
   size.X = ws->ws_col;
   size.Y = ws->ws_row;
   pinfo p (get_ttyp ()->pcon_pid);
-  if (p)
+  if (p && !get_ttyp ()->do_not_resize_pcon)
     {
       HPCON_INTERNAL hpcon_local;
       HANDLE pcon_owner =
@@ -2489,7 +2489,10 @@ fhandler_pty_slave::setup_pseudoconsole (STARTUPINFOEXW *si, bool nopcon)
       si->StartupInfo.hStdInput = fh0->get_handle ();
     fhandler_base *fh1 = ::cygheap->fdtab[1];
     if (fh1 && fh1->get_device () != get_device ())
-      si->StartupInfo.hStdOutput = fh1->get_output_handle ();
+      {
+       get_ttyp ()->do_not_resize_pcon = true;
+       si->StartupInfo.hStdOutput = fh1->get_output_handle ();
+      }
     fhandler_base *fh2 = ::cygheap->fdtab[2];
     if (fh2 && fh2->get_device () != get_device ())
       si->StartupInfo.hStdError = fh2->get_output_handle ();
@@ -2535,6 +2538,7 @@ fhandler_pty_slave::close_pseudoconsole (void)
       get_ttyp ()->switch_to_pcon_in = false;
       get_ttyp ()->pcon_pid = 0;
       get_ttyp ()->pcon_start = false;
+      get_ttyp ()->do_not_resize_pcon = false;
     }
 }
 
index 7e3b88b0b34c178ff554852c2ee2284f73223e01..d4b8d7651a744b82abf20d9d6535585306c31ba1 100644 (file)
@@ -245,6 +245,7 @@ tty::init ()
   pcon_cap_checked = false;
   has_csi6n = false;
   has_set_title = false;
+  do_not_resize_pcon = false;
 }
 
 HANDLE
index 4e9199dba27de96a42f0d17879f9db0ef45f3ea2..2c1ac7f5d637e17ce84028a95c76e2e31a631dd0 100644 (file)
@@ -104,6 +104,7 @@ private:
   bool pcon_cap_checked;
   bool has_csi6n;
   bool has_set_title;
+  bool do_not_resize_pcon;
 
 public:
   HANDLE from_master () const { return _from_master; }
This page took 0.034331 seconds and 5 git commands to generate.