summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-17 09:44:06 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-17 09:44:06 +0000
commit500c698b9b962b56d6b9ad3d277d816a202782f5 (patch)
treee1d33645eeed6f38c1466052be594e6de2576253 /ChangeLog
parent92b96f9a40c3eafec5251e4ec159a040366fbae9 (diff)
downloadruby-500c698b9b962b56d6b9ad3d277d816a202782f5.tar.gz
ruby-500c698b9b962b56d6b9ad3d277d816a202782f5.tar.xz
ruby-500c698b9b962b56d6b9ad3d277d816a202782f5.zip
* string.c (scan_once): need no encoding compatibility check.
it's done inside of re_reg_seach(). * string.c (rb_str_split_m): ditto. * re.c (rb_reg_regsub): ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14269 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog9
1 files changed, 9 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 8708125e9..3524a204e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+Mon Dec 17 18:42:23 2007 Yukihiro Matsumoto <matz@ruby-lang.org>
+
+ * string.c (scan_once): need no encoding compatibility check.
+ it's done inside of re_reg_seach().
+
+ * string.c (rb_str_split_m): ditto.
+
+ * re.c (rb_reg_regsub): ditto.
+
Mon Dec 17 17:50:30 2007 Yukihiro Matsumoto <matz@ruby-lang.org>
* string.c (rb_str_index): check if substring is broken.