Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
unbreak .lines on parrot, colomon++
  • Loading branch information
FROGGS committed Sep 7, 2014
1 parent 22a4c05 commit bf66354
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/IO/Handle.pm
Expand Up @@ -109,7 +109,7 @@ my class IO::Handle does IO::FileTestable {

if $.chomp {
gather until nqp::eoffh($!PIO) {
take nqp::readlinefh($!PIO).chomp;
take nqp::p6box_s(nqp::readlinefh($!PIO)).chomp;
$!ins = $!ins + 1;
}
}
Expand All @@ -130,7 +130,7 @@ my class IO::Handle does IO::FileTestable {
if $.chomp {
gather while $count-- {
last if nqp::eoffh($!PIO);
take nqp::readlinefh($!PIO).chomp;
take nqp::p6box_s(nqp::readlinefh($!PIO)).chomp;
$!ins = $!ins + 1;
}
}
Expand Down

0 comments on commit bf66354

Please sign in to comment.