summaryrefslogtreecommitdiff
path: root/t/test.pl
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2001-12-07 15:32:58 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-12-07 15:32:58 +0000
commitc3ded147ca5f0f3980e19b42b9ea21f8a7078bbe (patch)
tree35577e14e56138bb3cbfbbb7a708437597cae746 /t/test.pl
parent10cb7778b2425656148151f1517d115436333ccf (diff)
downloadperl-c3ded147ca5f0f3980e19b42b9ea21f8a7078bbe.tar.gz
Missing ).
p4raw-id: //depot/perl@13519
Diffstat (limited to 't/test.pl')
-rw-r--r--t/test.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/test.pl b/t/test.pl
index 6529b9243e..fa7eecc9f2 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*", $_)) } @_;
}