summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2012-02-25 02:22:53 -0600
committerJesse Luehrs <doy@tozt.net>2012-02-25 02:22:53 -0600
commit206d3c0589cc2bb8aac3831250145490eb1cd70b (patch)
tree003047c00d465832cd820e42cb9f60aca06e1f31
parentcc14ed95214c4d2728a04c05b27bc1d6bf004d9e (diff)
downloadterm-filter-206d3c0589cc2bb8aac3831250145490eb1cd70b.tar.gz
term-filter-206d3c0589cc2bb8aac3831250145490eb1cd70b.zip
don't need to track this anymore with Select::Retry
-rw-r--r--lib/Term/Filter.pm8
1 files changed, 0 insertions, 8 deletions
diff --git a/lib/Term/Filter.pm b/lib/Term/Filter.pm
index dae2cbb..f7e8136 100644
--- a/lib/Term/Filter.pm
+++ b/lib/Term/Filter.pm
@@ -70,13 +70,6 @@ sub _build_input_handles {
[ $self->input, $self->pty ]
}
-has _got_winch => (
- is => 'rw',
- isa => 'Bool',
- default => 0,
- init_arg => undef,
-);
-
has _raw_mode => (
is => 'rw',
isa => 'Bool',
@@ -145,7 +138,6 @@ sub _setup {
my $prev_winch = $SIG{WINCH};
$SIG{WINCH} = sub {
- $self->_got_winch(1);
$self->pty->slave->clone_winsize_from(\*STDIN);
$self->pty->kill('WINCH', 1);