diff options
author | Karl Williamson <khw@cpan.org> | 2014-05-05 22:41:14 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2014-05-31 11:52:32 -0600 |
commit | 3cedd9d93070bd6f0cb074a3013165cd9a630fca (patch) | |
tree | fecd55cd9272e99b60d415793e44feef7a51f1ef /utf8.c | |
parent | 5dca92787911972e6827cbb3173c9b1f44ea8613 (diff) | |
download | perl-3cedd9d93070bd6f0cb074a3013165cd9a630fca.tar.gz |
Make is_utf8_char_buf() a macro
This function is now more efficiently implemented as a synonym for
isUTF8_CHAR(). We retain the Perl_is_utf8_char_buf() function for code
that calls it that way.
Diffstat (limited to 'utf8.c')
-rw-r--r-- | utf8.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -310,7 +310,7 @@ Perl_uvchr_to_utf8_flags(pTHX_ U8 *d, UV uv, UV flags) /* =for apidoc is_utf8_char_buf -This is identical to the macro isUTF8_CHAR. +This is identical to the macro L</isUTF8_CHAR>. =cut */ |