04bfb0
From 8b4b30c5d389983c3df51b7ff3b38e5608c7c2e2 Mon Sep 17 00:00:00 2001
04bfb0
From: Karl Williamson <khw@cpan.org>
04bfb0
Date: Sat, 3 Aug 2019 09:17:43 -0600
04bfb0
Subject: [PATCH] perlapi: 5.30 promise not met; change to 5.32
04bfb0
MIME-Version: 1.0
04bfb0
Content-Type: text/plain; charset=UTF-8
04bfb0
Content-Transfer-Encoding: 8bit
04bfb0
04bfb0
We delayed this change, but I forgot to change this documentation
04bfb0
04bfb0
Signed-off-by: Petr Písař <ppisar@redhat.com>
04bfb0
---
04bfb0
 handy.h | 24 ++++++++++++------------
04bfb0
 1 file changed, 12 insertions(+), 12 deletions(-)
04bfb0
04bfb0
diff --git a/handy.h b/handy.h
04bfb0
index 24c028a638..2dfbc86125 100644
04bfb0
--- a/handy.h
04bfb0
+++ b/handy.h
04bfb0
@@ -609,13 +609,13 @@ future releases.
04bfb0
 Variant C<isI<FOO>_utf8> is like C<isI<FOO>_utf8_safe>, but takes just a single
04bfb0
 parameter, C

, which has the same meaning as the corresponding parameter does

04bfb0
 in C<isI<FOO>_utf8_safe>.  The function therefore can't check if it is reading
04bfb0
-beyond the end of the string.  Starting in Perl v5.30, it will take a second
04bfb0
+beyond the end of the string.  Starting in Perl v5.32, it will take a second
04bfb0
 parameter, becoming a synonym for C<isI<FOO>_utf8_safe>.  At that time every
04bfb0
 program that uses it will have to be changed to successfully compile.  In the
04bfb0
 meantime, the first runtime call to C<isI<FOO>_utf8> from each call point in the
04bfb0
 program will raise a deprecation warning, enabled by default.  You can convert
04bfb0
 your program now to use C<isI<FOO>_utf8_safe>, and avoid the warnings, and get an
04bfb0
-extra measure of protection, or you can wait until v5.30, when you'll be forced
04bfb0
+extra measure of protection, or you can wait until v5.32, when you'll be forced
04bfb0
 to add the C<e> parameter.
04bfb0
 
04bfb0
 Variant C<isI<FOO>_LC> is like the C<isI<FOO>_A> and C<isI<FOO>_L1> variants, but the
04bfb0
@@ -649,13 +649,13 @@ future releases.
04bfb0
 Variant C<isI<FOO>_LC_utf8> is like C<isI<FOO>_LC_utf8_safe>, but takes just a single
04bfb0
 parameter, C

, which has the same meaning as the corresponding parameter does

04bfb0
 in C<isI<FOO>_LC_utf8_safe>.  The function therefore can't check if it is reading
04bfb0
-beyond the end of the string.  Starting in Perl v5.30, it will take a second
04bfb0
+beyond the end of the string.  Starting in Perl v5.32, it will take a second
04bfb0
 parameter, becoming a synonym for C<isI<FOO>_LC_utf8_safe>.  At that time every
04bfb0
 program that uses it will have to be changed to successfully compile.  In the
04bfb0
 meantime, the first runtime call to C<isI<FOO>_LC_utf8> from each call point in
04bfb0
 the program will raise a deprecation warning, enabled by default.  You can
04bfb0
 convert your program now to use C<isI<FOO>_LC_utf8_safe>, and avoid the warnings,
04bfb0
-and get an extra measure of protection, or you can wait until v5.30, when
04bfb0
+and get an extra measure of protection, or you can wait until v5.32, when
04bfb0
 you'll be forced to add the C<e> parameter.
04bfb0
 
04bfb0
 =for apidoc Am|bool|isALPHA|char ch
04bfb0
@@ -897,13 +897,13 @@ implementation, and subject to change in future releases.
04bfb0
 =for apidoc Am|UV|toUPPER_utf8|U8* p|U8* s|STRLEN* lenp
04bfb0
 This is like C<L</toUPPER_utf8_safe>>, but doesn't have the C<e>
04bfb0
 parameter  The function therefore can't check if it is reading
04bfb0
-beyond the end of the string.  Starting in Perl v5.30, it will take the C<e>
04bfb0
+beyond the end of the string.  Starting in Perl v5.32, it will take the C<e>
04bfb0
 parameter, becoming a synonym for C<toUPPER_utf8_safe>.  At that time every
04bfb0
 program that uses it will have to be changed to successfully compile.  In the
04bfb0
 meantime, the first runtime call to C<toUPPER_utf8> from each call point in the
04bfb0
 program will raise a deprecation warning, enabled by default.  You can convert
04bfb0
 your program now to use C<toUPPER_utf8_safe>, and avoid the warnings, and get an
04bfb0
-extra measure of protection, or you can wait until v5.30, when you'll be forced
04bfb0
+extra measure of protection, or you can wait until v5.32, when you'll be forced
04bfb0
 to add the C<e> parameter.
04bfb0
 
04bfb0
 =for apidoc Am|U8|toFOLD|U8 ch
04bfb0
@@ -944,13 +944,13 @@ implementation, and subject to change in future releases.
04bfb0
 =for apidoc Am|UV|toFOLD_utf8|U8* p|U8* s|STRLEN* lenp
04bfb0
 This is like C<L</toFOLD_utf8_safe>>, but doesn't have the C<e>
04bfb0
 parameter  The function therefore can't check if it is reading
04bfb0
-beyond the end of the string.  Starting in Perl v5.30, it will take the C<e>
04bfb0
+beyond the end of the string.  Starting in Perl v5.32, it will take the C<e>
04bfb0
 parameter, becoming a synonym for C<toFOLD_utf8_safe>.  At that time every
04bfb0
 program that uses it will have to be changed to successfully compile.  In the
04bfb0
 meantime, the first runtime call to C<toFOLD_utf8> from each call point in the
04bfb0
 program will raise a deprecation warning, enabled by default.  You can convert
04bfb0
 your program now to use C<toFOLD_utf8_safe>, and avoid the warnings, and get an
04bfb0
-extra measure of protection, or you can wait until v5.30, when you'll be forced
04bfb0
+extra measure of protection, or you can wait until v5.32, when you'll be forced
04bfb0
 to add the C<e> parameter.
04bfb0
 
04bfb0
 =for apidoc Am|U8|toLOWER|U8 ch
04bfb0
@@ -999,13 +999,13 @@ implementation, and subject to change in future releases.
04bfb0
 =for apidoc Am|UV|toLOWER_utf8|U8* p|U8* s|STRLEN* lenp
04bfb0
 This is like C<L</toLOWER_utf8_safe>>, but doesn't have the C<e>
04bfb0
 parameter  The function therefore can't check if it is reading
04bfb0
-beyond the end of the string.  Starting in Perl v5.30, it will take the C<e>
04bfb0
+beyond the end of the string.  Starting in Perl v5.32, it will take the C<e>
04bfb0
 parameter, becoming a synonym for C<toLOWER_utf8_safe>.  At that time every
04bfb0
 program that uses it will have to be changed to successfully compile.  In the
04bfb0
 meantime, the first runtime call to C<toLOWER_utf8> from each call point in the
04bfb0
 program will raise a deprecation warning, enabled by default.  You can convert
04bfb0
 your program now to use C<toLOWER_utf8_safe>, and avoid the warnings, and get an
04bfb0
-extra measure of protection, or you can wait until v5.30, when you'll be forced
04bfb0
+extra measure of protection, or you can wait until v5.32, when you'll be forced
04bfb0
 to add the C<e> parameter.
04bfb0
 
04bfb0
 =for apidoc Am|U8|toTITLE|U8 ch
04bfb0
@@ -1047,13 +1047,13 @@ implementation, and subject to change in future releases.
04bfb0
 =for apidoc Am|UV|toTITLE_utf8|U8* p|U8* s|STRLEN* lenp
04bfb0
 This is like C<L</toLOWER_utf8_safe>>, but doesn't have the C<e>
04bfb0
 parameter  The function therefore can't check if it is reading
04bfb0
-beyond the end of the string.  Starting in Perl v5.30, it will take the C<e>
04bfb0
+beyond the end of the string.  Starting in Perl v5.32, it will take the C<e>
04bfb0
 parameter, becoming a synonym for C<toTITLE_utf8_safe>.  At that time every
04bfb0
 program that uses it will have to be changed to successfully compile.  In the
04bfb0
 meantime, the first runtime call to C<toTITLE_utf8> from each call point in the
04bfb0
 program will raise a deprecation warning, enabled by default.  You can convert
04bfb0
 your program now to use C<toTITLE_utf8_safe>, and avoid the warnings, and get an
04bfb0
-extra measure of protection, or you can wait until v5.30, when you'll be forced
04bfb0
+extra measure of protection, or you can wait until v5.32, when you'll be forced
04bfb0
 to add the C<e> parameter.
04bfb0
 
04bfb0
 =cut
04bfb0
-- 
04bfb0
2.21.0
04bfb0