Undo #4055 (related to #4079).
authorJarkko Hietaniemi <jhi@iki.fi>
Sun, 5 Sep 1999 22:02:18 +0000 (22:02 +0000)
committerJarkko Hietaniemi <jhi@iki.fi>
Sun, 5 Sep 1999 22:02:18 +0000 (22:02 +0000)
p4raw-id: //depot/cfgperl@4080

pod/perlop.pod

index 2b5b789..14ca6b5 100644 (file)
@@ -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