From dd9074111245b4c57f071a11275df34ae67192dc Mon Sep 17 00:00:00 2001 From: knu Date: Tue, 5 Jun 2001 08:17:25 +0000 Subject: [PATCH] Update. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1506 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- doc/NEWS | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/doc/NEWS b/doc/NEWS index 8043bcdadf..16a955687e 100644 --- a/doc/NEWS +++ b/doc/NEWS @@ -1,3 +1,35 @@ +: Array expansion + + Fixed with the following behavior: + + a = *[1] + p a #=> [1] + + Now 1-element array in rhs is expanded properly. + + a = *[1] + p a #=> 1 + +: NameError & NoMethodError + + Moved and now NoMethodError < NameError < StandardError. + +: open + + Extended so that when the third argument is permission flags it + calls open(2) instead of fopen(3). + +: Marshal + + Fixed not to dump anonymous classes/modules. + + Fixed with loading modules. + +: constants + + Improved at the performance of searching by using an internal hash + table. + : Syntax Experimentally altered to get the following code (note the space