aboutsummaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-09-18 13:17:41 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-09-18 13:17:41 +0000
commitc3e2e0e53f0e5bfd1277152fa7705c22a44bf573 (patch)
tree423d782590bb97c6cc739a8d277acdc26a31e464 /ChangeLog
parent081c802cb9fe84d349bc4ecf26a36eceae431aed (diff)
downloadruby-c3e2e0e53f0e5bfd1277152fa7705c22a44bf573.tar.gz
* string.c (rb_str_comparable): make ascii8bit string to be
compatible with any other encoding. * string.c (rb_str_cmp): use rb_str_comparable() instead of rb_enc_compatible() since <=> is a comparison anyway. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19418 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog8
1 files changed, 8 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 129e538151..da07f5688a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+Thu Sep 18 21:57:32 2008 Yukihiro Matsumoto <matz@ruby-lang.org>
+
+ * string.c (rb_str_comparable): make ascii8bit string to be
+ compatible with any other encoding.
+
+ * string.c (rb_str_cmp): use rb_str_comparable() instead of
+ rb_enc_compatible() since <=> is a comparison anyway.
+
Thu Sep 18 21:37:14 2008 Tanaka Akira <akr@fsij.org>
* grapheme cluster implementation reverted. [ruby-dev:36375]