summaryrefslogtreecommitdiff
path: root/pod/perlop.pod
diff options
context:
space:
mode:
authorRobin Houston <robin@cpan.org>2005-12-21 11:00:08 +0000
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2005-12-21 16:16:19 +0000
commitbc9b29dbf2ff006e91ae1d732887485497f58896 (patch)
tree4147ad5078d3b0f0201672a8a8876a5ace346c4e /pod/perlop.pod
parent565a3db3dc85d0f63074b38e7019290e4f8f3766 (diff)
downloadperl-bc9b29dbf2ff006e91ae1d732887485497f58896.tar.gz
Feature bundle is now :5.10, and add -E switch
Message-ID: <20051221110008.GB25877@rpc142.cs.man.ac.uk> p4raw-id: //depot/perl@26432
Diffstat (limited to 'pod/perlop.pod')
-rw-r--r--pod/perlop.pod4
1 files changed, 3 insertions, 1 deletions
diff --git a/pod/perlop.pod b/pod/perlop.pod
index db105e32ae..c2fba59d65 100644
--- a/pod/perlop.pod
+++ b/pod/perlop.pod
@@ -838,7 +838,9 @@ Then again, you could always use parentheses.
Binary "err" is equivalent to C<//>--it's just like binary "or", except it tests
its left argument's definedness instead of its truth. There are two ways to
remember "err": either because many functions return C<undef> on an B<err>or,
-or as a sort of correction: C<$a=($b err 'default')>
+or as a sort of correction: C<$a=($b err 'default')>. This keyword
+is only available when the 'err' feature is enabled: see L<feature>
+for more information.
Binary "xor" returns the exclusive-OR of the two surrounding expressions.
It cannot short circuit, of course.