From 7a0f1e2702e6c4525b75eb5803311feba2ebd03f Mon Sep 17 00:00:00 2001 From: naruse Date: Sat, 8 Mar 2008 09:05:34 +0000 Subject: * string.c (search_nonascii): Use VALUE instead of unsigned long because VALUE can be the fastest unsigned integer type. On LLP64 unsigned long isn't the fastest. * string.c (str_strlen): ditto. * string.c (str_utf8_nth): ditto. * string.c (count_utf8_lead_bytes_with_ulong): ditto. * string.c (count_utf8_lead_bytes_with_word): renamed. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@15731 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index a58e90d9d..5e2ff66ee 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,14 @@ +Sat Mar 8 06:53:48 2008 NARUSE, Yui + + * string.c (search_nonascii): Use VALUE instead of unsigned long + because VALUE can be the fastest unsigned integer type. + On LLP64 unsigned long isn't the fastest. + * string.c (str_strlen): ditto. + * string.c (str_utf8_nth): ditto. + * string.c (count_utf8_lead_bytes_with_ulong): ditto. + + * string.c (count_utf8_lead_bytes_with_word): renamed. + Fri Mar 7 21:27:43 2008 Yusuke Endoh * bignum.c: fix indent. -- cgit