pod/perldelta: Add note about documenting toLOWER() etc
authorKarl Williamson <public@khwilliamson.com>
Tue, 11 Jun 2013 02:41:09 +0000 (20:41 -0600)
committerKarl Williamson <public@khwilliamson.com>
Tue, 11 Jun 2013 02:43:47 +0000 (20:43 -0600)
pod/perldelta.pod

index 6c19aee..c07c8ed 100644 (file)
@@ -486,6 +486,13 @@ C<Perl_regexec_flags>. Previously intuit would try to guess the start of
 the string from the passed SV (if any), and would sometimes get it wrong
 (e.g. with an overloaded SV).
 
+=item *
+
+XS code may use various macros to change the case of a character or code
+point (for example C<toLOWER()>).  These weren't documented until now;
+and now they should be used in preference to calling the underlying
+functions.  See L<perlapi/Character case changing>.
+
 =back
 
 =head1 Selected Bug Fixes