From 34ca2ab05891c41e28deecde6a8548127f286525 Mon Sep 17 00:00:00 2001 From: matz Date: Sat, 26 Jul 2003 02:26:08 +0000 Subject: * variable.c (rb_mod_const_missing): "const_missing" should not appear in the caller(); add call frame adjustment. * eval.c (rb_method_missing): simplify call frame adjustment. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4168 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- doc/NEWS | 25 ------------------------- 1 file changed, 25 deletions(-) (limited to 'doc/NEWS') diff --git a/doc/NEWS b/doc/NEWS index 905d2441c2..b0aa66bd5d 100644 --- a/doc/NEWS +++ b/doc/NEWS @@ -381,20 +381,6 @@ This file is not actively maintained. See ChangeLog for recent changes. Fixed with loading modules. -: MatchData#to_ary - - Added for convenience of Regexp#match. [ruby-dev:12766] - - Previously we had to do: - - foo, bar, baz = /(\w+?)\s+(\w+?)\s+(\w+)/.match("foo bar baz").to_a[1..-1] - p [foo, bar, baz] - - But now can do: - - _, foo, bar, baz = /(\w+?)\s+(\w+?)\s+(\w+)/.match("foo bar baz") - p [foo, bar, baz] - : Math.acos(x) : Math.asin(x) : Math.atan(x) @@ -456,11 +442,6 @@ This file is not actively maintained. See ChangeLog for recent changes. Added. -: Proc#yield - - Added. This is equivalent to Proc#call except it does not check the - number of given arguments, which are thus passed to the proc as-is. - : Process.times Moved from Time.times. (Time.times still remains but emits a @@ -478,12 +459,6 @@ This file is not actively maintained. See ChangeLog for recent changes. Added. -: Range#to_ary - - Added. You can now do something like this: - - a, b, c = 1..3 - : Regexp#options Added. -- cgit v1.2.3