Fix minor bummer in 24706
authorAndy Lester <andy@petdance.com>
Sat, 4 Jun 2005 23:09:04 +0000 (18:09 -0500)
committerAbhijit Menon-Sen <ams@wiw.org>
Sun, 5 Jun 2005 03:55:11 +0000 (03:55 +0000)
Message-Id: <20050605040904.GA27783@petdance.com>

p4raw-id: //depot/perl@24707

utf8.c

diff --git a/utf8.c b/utf8.c
index 53983cb..5a80bfd 100644 (file)
--- a/utf8.c
+++ b/utf8.c
@@ -246,7 +246,7 @@ Perl_is_utf8_char(pTHX_ const U8 *s)
     if (len <= 4)
         return IS_UTF8_CHAR(s, len) ? len : 0;
 #endif /* #ifdef IS_UTF8_CHAR */
-    return S_is_utf8_char_slow(s, len);
+    return is_utf8_char_slow(s, len);
 }
 
 /*
@@ -285,7 +285,7 @@ Perl_is_utf8_string(pTHX_ const U8 *s, STRLEN len)
                 if (!IS_UTF8_CHAR(x, c))
                     return FALSE;
             } else {
-                if (!S_is_utf8_char_slow(x, c))
+                if (!is_utf8_char_slow(x, c))
                     return FALSE;
             }
 #else