Change 24707 by [EMAIL PROTECTED] on 2005/06/05 03:55:11
Subject: [PATCH] Fix minor bummer in 24706
From: Andy Lester <[EMAIL PROTECTED]>
Date: Sat, 4 Jun 2005 23:09:04 -0500
Message-Id: <[EMAIL PROTECTED]>
Affected files ...
... //depot/perl/utf8.c#235 edit
Differences ...
==== //depot/perl/utf8.c#235 (text) ====
Index: perl/utf8.c
--- perl/utf8.c#234~24706~ Sat Jun 4 09:55:27 2005
+++ perl/utf8.c Sat Jun 4 20:55:11 2005
@@ -246,7 +246,7 @@
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 @@
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
End of Patch.