diff options
author | Karl Williamson <khw@cpan.org> | 2015-05-06 21:05:19 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2015-08-25 17:24:08 -0600 |
commit | dc83bf8e644104953efa0f771ec775aba638af5a (patch) | |
tree | a1aeb7fcdca1f53eb81740d042eac1ee48023669 /pod/perlguts.pod | |
parent | 26c2b24e747153620ae90a402ebd0dab176e803d (diff) | |
download | perl-dc83bf8e644104953efa0f771ec775aba638af5a.tar.gz |
perlguts: Wrap macro name with C<>
Diffstat (limited to 'pod/perlguts.pod')
-rw-r--r-- | pod/perlguts.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlguts.pod b/pod/perlguts.pod index a58d7ade9d..a667a10528 100644 --- a/pod/perlguts.pod +++ b/pod/perlguts.pod @@ -2946,7 +2946,7 @@ Since just passing an SV to an XS function and copying the data of the SV is not enough to copy the UTF8 flags, even less right is just passing a S<C<char *>> to an XS function. -For full generality, use the L<perlapi/DO_UTF8> macro to see if the +For full generality, use the L<C<DO_UTF8>|perlapi/DO_UTF8> macro to see if the string in an SV is to be I<treated> as UTF-8. This takes into account if the call to the XS function is being made from within the scope of L<S<C<use bytes>>|bytes>. If so, the underlying bytes that comprise the |