Allow several arguments to display().
Jarkko Hietaniemi [Fri, 7 Dec 2001 15:24:32 +0000 (15:24 +0000)]
p4raw-id: //depot/perl@13518

t/test.pl

index ac6bbb7..6529b92 100644 (file)
--- 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 {
-    join("", map { $_ > 255 ? sprintf("\\x{%x}", $_) : chr($_) =~ /[[:cntrl:]]/ ? sprintf("\\%03o", $_) : chr($_) } unpack("U*", $_[0]));
+    map { join("", map { $_ > 255 ? sprintf("\\x{%x}", $_) : chr($_) =~ /[[:cntrl:]]/ ? sprintf("\\%03o", $_) : chr($_) } unpack("U*", $_) } @_;
 }