From: Jarkko Hietaniemi Date: Fri, 7 Dec 2001 15:32:58 +0000 (+0000) Subject: Missing ). X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=c3ded147ca5f0f3980e19b42b9ea21f8a7078bbe;p=p5sagit%2Fp5-mst-13.2.git Missing ). p4raw-id: //depot/perl@13519 --- diff --git a/t/test.pl b/t/test.pl index 6529b92..fa7eecc 100644 --- a/t/test.pl +++ b/t/test.pl @@ -265,7 +265,7 @@ sub BAILOUT { # A way to display scalars containing control characters and Unicode. sub display { - map { join("", map { $_ > 255 ? sprintf("\\x{%x}", $_) : chr($_) =~ /[[:cntrl:]]/ ? sprintf("\\%03o", $_) : chr($_) } unpack("U*", $_) } @_; + map { join("", map { $_ > 255 ? sprintf("\\x{%x}", $_) : chr($_) =~ /[[:cntrl:]]/ ? sprintf("\\%03o", $_) : chr($_) } unpack("U*", $_)) } @_; }