diff options
author | Andy Lester <andy@petdance.com> | 2005-06-04 18:09:04 -0500 |
---|---|---|
committer | Abhijit Menon-Sen <ams@wiw.org> | 2005-06-05 03:55:11 +0000 |
commit | 2c0c5f92cc8c83f85f490c4724df41382ded08d0 (patch) | |
tree | 13b29dbe8ff855868f4903f9375a82dd1475d2a5 /utf8.c | |
parent | 646ca15d5cf720a2af3a258d7092a967f3a80550 (diff) | |
download | perl-2c0c5f92cc8c83f85f490c4724df41382ded08d0.tar.gz |
Fix minor bummer in 24706
Message-Id: <20050605040904.GA27783@petdance.com>
p4raw-id: //depot/perl@24707
Diffstat (limited to 'utf8.c')
-rw-r--r-- | utf8.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |