From de3b3d59af90ad14ce2c868d74e0030e651d2031 Mon Sep 17 00:00:00 2001 From: knu Date: Thu, 19 Jul 2001 05:49:51 +0000 Subject: Update. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1633 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- doc/NEWS | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) (limited to 'doc') diff --git a/doc/NEWS b/doc/NEWS index d24b8e1c5b..690c221249 100644 --- a/doc/NEWS +++ b/doc/NEWS @@ -1,5 +1,14 @@ Summary of the changes since 1.6.4: +: String#rindex + + Fixed with a bug when a regex is given. [ruby-dev:13843] + + "foobar".index("b") #=> 3 + "foobar".index(/b/) #=> 3 + "foobar".rindex("b") #=> 3 + "foobar".rindex(/b/) #=> nil <- ??? + : require Fixed with handling of a `~' to allow an extention to be omitted. @@ -26,7 +35,7 @@ Summary of the changes since 1.6.4: : ruby -x - Fixed a bug that when a `-x' is specified the interpreter might exit + Fixed with a bug that when a `-x' is specified the interpreter might exit without running a script. [ruby-dev:13752] : attr_* @@ -71,7 +80,7 @@ Summary of the changes since 1.6.4: : $SAFE / load - Fixed a bug that a file with a tainted filename can be loaded when + Fixed with a bug that a file with a tainted filename can be loaded when 1 <= $SAFE <= 3 and the second argument is true. [ruby-dev:13481] $SAFE = 1 @@ -282,11 +291,11 @@ Summary of the changes since 1.6.3: : Fixnum#[] - Fixed a bug on the platforms which sizeof(long) > sizeof(int). + Fixed with a bug on the platforms which sizeof(long) > sizeof(int). : Regular Expression - Fixed a couple of minor bugs. (()), (()) + Fixed with a couple of minor bugs. (()), (()) : retry -- cgit v1.2.3