From: Philip Newton Date: Mon, 11 Jun 2001 07:08:03 +0000 (+0200) Subject: [MacPerl-Porters] Re: [PATCH] Mac OS Compatability for bleadperl X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=2704b27c58cf5de5b958d9942a35a1665eec217c;p=p5sagit%2Fp5-mst-13.2.git [MacPerl-Porters] Re: [PATCH] Mac OS Compatability for bleadperl Message-Id: <200106120802.LAA08992@taas.iki.fi> p4raw-id: //depot/perl@10527 --- diff --git a/t/base/term.t b/t/base/term.t index e866337..1d688b8 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"; }