In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/f2fc1b450b5c6740f44dd7f15e85533883500b0d?hp=94770095e772a5b1220b453c62e41c1ab3066b45>

- Log -----------------------------------------------------------------
commit f2fc1b450b5c6740f44dd7f15e85533883500b0d
Author: Karl Williamson <[email protected]>
Date:   Mon May 11 12:13:14 2015 -0600

    perlapi: Use UVCHR_SKIP not UNI_SKIP
    
    This new name is more consistent with other uses in the API.
-----------------------------------------------------------------------

Summary of changes:
 utf8.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/utf8.c b/utf8.c
index 3ad79a8..63d5a7e 100644
--- a/utf8.c
+++ b/utf8.c
@@ -240,7 +240,7 @@ Perl_uvoffuni_to_utf8_flags(pTHX_ U8 *d, UV uv, UV flags)
 =for apidoc uvchr_to_utf8
 
 Adds the UTF-8 representation of the native code point C<uv> to the end
-of the string C<d>; C<d> should have at least C<UNISKIP(uv)+1> (up to
+of the string C<d>; C<d> should have at least C<UVCHR_SKIP(uv)+1> (up to
 C<UTF8_MAXBYTES+1>) free bytes available.  The return value is the pointer to
 the byte after the end of the new character.  In other words,
 
@@ -269,7 +269,7 @@ Perl_uvchr_to_utf8(pTHX_ U8 *d, UV uv)
 =for apidoc uvchr_to_utf8_flags
 
 Adds the UTF-8 representation of the native code point C<uv> to the end
-of the string C<d>; C<d> should have at least C<UNISKIP(uv)+1> (up to
+of the string C<d>; C<d> should have at least C<UVCHR_SKIP(uv)+1> (up to
 C<UTF8_MAXBYTES+1>) free bytes available.  The return value is the pointer to
 the byte after the end of the new character.  In other words,
 

--
Perl5 Master Repository

Reply via email to