diff options
author | Philip Newton <pne@cpan.org> | 2001-06-11 09:08:03 +0200 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-06-12 11:58:53 +0000 |
commit | 2704b27c58cf5de5b958d9942a35a1665eec217c (patch) | |
tree | 1c327c70eef61a87276d7a7cd96c3050154f1e28 | |
parent | 08e61bccdfbdea504a137785230ae6bd350c2bdb (diff) | |
download | perl-2704b27c58cf5de5b958d9942a35a1665eec217c.tar.gz |
[MacPerl-Porters] Re: [PATCH] Mac OS Compatability for bleadperl
Message-Id: <200106120802.LAA08992@taas.iki.fi>
p4raw-id: //depot/perl@10527
-rwxr-xr-x | t/base/term.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/base/term.t b/t/base/term.t index e866337879..1d688b8f5b 100755 --- a/t/base/term.t +++ b/t/base/term.t @@ -11,7 +11,7 @@ print "1..7\n"; # check "" interpretation $x = "\n"; -# 10 is ASCII/Iso Latin, 13 in Mac OS, 21 is EBCDIC. +# 10 is ASCII/Iso Latin, 13 is Mac OS, 21 is EBCDIC. if ($x eq chr(10)) { print "ok 1\n";} elsif ($x eq chr(13)) { print "ok 1 # Mac OS\n"; } elsif ($x eq chr(21)) { print "ok 1 # EBCDIC\n"; } |