aboutsummaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorglass <glass@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-07-31 11:18:18 +0000
committerglass <glass@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-07-31 11:18:18 +0000
commit0e2d0bb9705c21c4cfecf68a9ccf6c54e040d667 (patch)
tree0a824b3c7c4ffd6526896c51e8f0ec9629d20cef /ChangeLog
parentaba8c29a8b3a2921009eca50bfb08bea03ec4164 (diff)
downloadruby-0e2d0bb9705c21c4cfecf68a9ccf6c54e040d667.tar.gz
* string.c (rb_str_rindex): fix bug introduced in r42269.
"".rindex("") should return 0. (str_rindex): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42275 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog6
1 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 7b805774ab..1968180a42 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Wed Jul 31 20:11:01 2013 Masaki Matsushita <glass.saga@gmail.com>
+
+ * string.c (rb_str_rindex): fix bug introduced in r42269.
+ "".rindex("") should return 0.
+ (str_rindex): ditto.
+
Wed Jul 31 19:55:33 2013 Tanaka Akira <akr@fsij.org>
* bignum.c (MAX_BIG2STR_TABLE_ENTRIES): Use SIZEOF_SIZE_T.