diff options
author | M. J. T. Guy <mjtg@cus.cam.ac.uk> | 1999-06-09 19:27:51 +0100 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-07-06 09:37:37 +0000 |
commit | 39555b0e6349fdd1e6009b3fe987d1ca5523e4c8 (patch) | |
tree | edc03861618eddbdff90248a8a7ae687265fecc4 /t | |
parent | 7d7909c37ecc4d7b93818ddb68767db2a204140c (diff) | |
download | perl-39555b0e6349fdd1e6009b3fe987d1ca5523e4c8.tar.gz |
fix for C<$/ = 42> setting paragraph mode (applied with small
tweak)
Message-Id: <E10rm8l-00023T-00@ursa.cus.cam.ac.uk>
Subject: Re: [ID 19990608.002] Possible bug with binmode and <FH> on Perl 5.005_03 Win32
p4raw-id: //depot/perl@3610
Diffstat (limited to 't')
-rwxr-xr-x | t/base/rs.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/base/rs.t b/t/base/rs.t index 52a957260f..07cc8fd447 100755 --- a/t/base/rs.t +++ b/t/base/rs.t @@ -24,7 +24,7 @@ $bar = <TESTFILE>; if ($bar eq "12\n") {print "ok 2\n";} else {print "not ok 2\n";} # Try a non line terminator -$/ = "3"; +$/ = 3; $bar = <TESTFILE>; if ($bar eq "123") {print "ok 3\n";} else {print "not ok 3\n";} |