This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d6584ed
)
Correct precedence from and to && in an expression with assignment.
author
Nicholas Clark
<nick@ccl4.org>
Mon, 17 Oct 2005 14:44:59 +0000
(14:44 +0000)
committer
Nicholas Clark
<nick@ccl4.org>
Mon, 17 Oct 2005 14:44:59 +0000
(14:44 +0000)
p4raw-id: //depot/perl@25781
ext/IO/t/io_sock.t
patch
|
blob
|
blame
|
history
diff --git
a/ext/IO/t/io_sock.t
b/ext/IO/t/io_sock.t
index
918e96b
..
70a42e9
100755
(executable)
--- a/
ext/IO/t/io_sock.t
+++ b/
ext/IO/t/io_sock.t
@@
-28,7
+28,7
@@
BEGIN {
}
}
-my $has_perlio = $] >= 5.008
and
find PerlIO::Layer 'perlio';
+my $has_perlio = $] >= 5.008
&&
find PerlIO::Layer 'perlio';
$| = 1;
print "1..26\n";