From b52e7ef07744e63151fcb4087619f18948f42664 Mon Sep 17 00:00:00 2001 From: Rocco Caputo Date: Thu, 3 Apr 2003 04:01:56 -0500 Subject: [PATCH] Apply Alan Hastings' Cygwin support patch. --- lib/POE/Wheel/Run.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/POE/Wheel/Run.pm b/lib/POE/Wheel/Run.pm index 6146bcd28..0ab169808 100644 --- a/lib/POE/Wheel/Run.pm +++ b/lib/POE/Wheel/Run.pm @@ -282,7 +282,7 @@ sub new { # size. APITUE 19.4 and 19.5. if (defined TIOCGWINSZ) { if (-t STDIN) { - my $window_size = ''; + my $window_size = '!' x 25; ioctl( STDIN, TIOCGWINSZ, $window_size ) or die $!; ioctl( $stdin_read, TIOCSWINSZ, $window_size ) or die $!; }