summaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-04-03 12:25:09 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-04-03 12:25:09 +0000
commitb81ea661dbc3c31073de782a8b0b9f3f86e3de5e (patch)
tree4290400ce4aa2b7b0f74904ae584061ae199f647 /NEWS
parent2767139e056cb9b8585634f8eb9d174589f85905 (diff)
* io.c (rb_io_seek_m): Accept :CUR, :END, :SET as "whence" argument.
(interpret_seek_whence): New function. [ruby-dev:45818] [Feature #6643] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40084 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 58c15536c3..b1a9804fb5 100644
--- a/NEWS
+++ b/NEWS
@@ -18,6 +18,10 @@ with all sufficient information, see the ChangeLog file.
* added environment variable:
* RUBY_HEAP_SLOTS_GROWTH_FACTOR: growth rate of the heap.
+* IO
+ * extended methods:
+ * IO#seek accepts symbols (:CUR, :END, :SET) for 2nd argument.
+
* Mutex
* misc
* Mutex#owned? is no longer experimental.