summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2001-06-05 08:17:25 +0000
committerknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2001-06-05 08:17:25 +0000
commitdd9074111245b4c57f071a11275df34ae67192dc (patch)
tree425bd94f5a61b743cbde83bcf46930360b1e8c97 /doc
parentb12904e85f5a9cc6c82f0fd06783ba219f334932 (diff)
Update.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1506 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'doc')
-rw-r--r--doc/NEWS32
1 files changed, 32 insertions, 0 deletions
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