From: Jarkko Hietaniemi <jhi@iki.fi>
Date: Sun, 5 Sep 1999 22:02:18 +0000 (+0000)
Subject: Undo #4055 (related to #4079).
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=982ce1809751a8e19a5bbe5feaae6f223efd3485;p=p5sagit%2Fp5-mst-13.2.git

Undo #4055 (related to #4079).

p4raw-id: //depot/cfgperl@4080
---

diff --git a/pod/perlop.pod b/pod/perlop.pod
index 2b5b789..14ca6b5 100644
--- a/pod/perlop.pod
+++ b/pod/perlop.pod
@@ -220,15 +220,11 @@ Binary "." concatenates two strings.
 
 Binary "<<" returns the value of its left argument shifted left by the
 number of bits specified by the right argument.  Arguments should be
-integers.  (See also L<Integer Arithmetic>.)  Shifting more than the
-width of the available integer in bits (usually 32 or 64) produces
-undefined (machine dependent) results.
+integers.  (See also L<Integer Arithmetic>.)
 
 Binary ">>" returns the value of its left argument shifted right by
 the number of bits specified by the right argument.  Arguments should
-be integers.  (See also L<Integer Arithmetic>.)  Shifting more than the
-width of the available integer in bits (usually 32 or 64) produces
-undefined (machine dependent) results.
+be integers.  (See also L<Integer Arithmetic>.)
 
 =head2 Named Unary Operators