summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2015-05-11 12:13:14 -0600
committerKarl Williamson <khw@cpan.org>2015-05-11 12:21:36 -0600
commitf2fc1b450b5c6740f44dd7f15e85533883500b0d (patch)
tree17b573d7e0532dbcc30cfff5989290f76627934e
parent94770095e772a5b1220b453c62e41c1ab3066b45 (diff)
downloadperl-f2fc1b450b5c6740f44dd7f15e85533883500b0d.tar.gz
perlapi: Use UVCHR_SKIP not UNI_SKIP
This new name is more consistent with other uses in the API.
-rw-r--r--utf8.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/utf8.c b/utf8.c
index 3ad79a894a..63d5a7e4b9 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,