From 044283fb5b829c30e72c2ed802d101823b1dbdc1 Mon Sep 17 00:00:00 2001 From: akr Date: Mon, 31 Dec 2007 10:39:20 +0000 Subject: * string.c (IS_7BIT): removed. (single_byte_optimizable): new function to test optimizationability using single byte string. (str_strlen): use single_byte_optimizable instead of is_ascii_string. (str_nth): rename argument: asc -> singlebyte. (str_offset): ditto. (rb_str_substr): use single_byte_optimizable instead of IS_7BIT. (rb_str_index): ditto. (rb_str_rindex): ditto. (rb_str_splice): ditto. (rb_str_justify): ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14813 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index ca4af7026..f79f0995b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,18 @@ +Mon Dec 31 19:35:20 2007 Tanaka Akira + + * string.c (IS_7BIT): removed. + (single_byte_optimizable): new function to test optimizationability + using single byte string. + (str_strlen): use single_byte_optimizable instead of + is_ascii_string. + (str_nth): rename argument: asc -> singlebyte. + (str_offset): ditto. + (rb_str_substr): use single_byte_optimizable instead of IS_7BIT. + (rb_str_index): ditto. + (rb_str_rindex): ditto. + (rb_str_splice): ditto. + (rb_str_justify): ditto. + Mon Dec 31 07:39:31 2007 Nobuyoshi Nakada * main.c, goruby.c (RUBY_MAIN_INIT): removed. -- cgit