From 49f4c4e423fa15e3da8c813a7526bb78740f9018 Mon Sep 17 00:00:00 2001 From: Karl Williamson Date: Sat, 30 Jun 2012 22:04:23 -0600 Subject: [PATCH] Fix up pod references to deprecated function --- pod/perlguts.pod | 3 ++- pod/perlunicode.pod | 5 ++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pod/perlguts.pod b/pod/perlguts.pod index fcc9811..8f3ed0c 100644 --- a/pod/perlguts.pod +++ b/pod/perlguts.pod @@ -2642,7 +2642,8 @@ is what makes Unicode input an interesting problem. In general, you either have to know what you're dealing with, or you have to guess. The API function C can help; it'll tell you if a string contains only valid UTF-8 characters. However, it can't -do the work for you. On a character-by-character basis, XXX C +do the work for you. On a character-by-character basis, +C will tell you whether the current character in a string is valid UTF-8. =head2 How does UTF-8 represent Unicode characters? diff --git a/pod/perlunicode.pod b/pod/perlunicode.pod index 4692e34..44b5f71 100644 --- a/pod/perlunicode.pod +++ b/pod/perlunicode.pod @@ -1545,9 +1545,8 @@ are valid UTF-8. =item * -C returns true if the pointer points to a valid UTF-8 -character. However, this function should not be used because of -security concerns. Instead, use C. +C returns true if the pointer points to +a valid UTF-8 character. =item * -- 2.7.4