In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/76aae383784f602979d5efc9c8828918d67827d8?hp=afac733b093ba4436b25410cd880bcfdae213746>
- Log ----------------------------------------------------------------- commit 76aae383784f602979d5efc9c8828918d67827d8 Author: Karl Williamson <[email protected]> Date: Thu Jun 1 16:10:48 2017 -0600 perldeprecation: Add vec() with above-FF code points ----------------------------------------------------------------------- Summary of changes: pod/perldeprecation.pod | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pod/perldeprecation.pod b/pod/perldeprecation.pod index 9be93a1376..4ec3182408 100644 --- a/pod/perldeprecation.pod +++ b/pod/perldeprecation.pod @@ -50,6 +50,12 @@ changes to the variable that it closes over, add an explicit C<return>: This usage has been deprecated, and will no longer be allowed in Perl 5.32. +=head2 Use of strings with code points over 0xFF as arguments to C<vec> + +C<vec> views its string argument as a sequence of bits. A string +containing a code point over 0xFF is nonsensical. This usage is +deprecated in Perl 5.28, and will be removed in Perl 5.32. + =head2 Perl 5.30 =head3 C<< $* >> is no longer supported -- Perl5 Master Repository
