1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* NEWS: add Kernel#caller's second argument.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35802 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
ko1 2012-05-26 04:51:32 +00:00
parent 4f54d4710e
commit ca433168ba
2 changed files with 6 additions and 0 deletions

View file

@ -1,3 +1,7 @@
Sat May 26 13:50:48 2012 Koichi Sasada <ko1@atdot.net>
* NEWS: add Kernel#caller's second argument.
Sat May 26 13:40:29 2012 Koichi Sasada <ko1@atdot.net>
* vm.c (RubyVM::FrameInfo): add a class to access each frame

2
NEWS
View file

@ -36,6 +36,8 @@ with all sufficient information, see the ChangeLog file.
* added Kernel#Hash conversion method like Array() or Float().
* extended method:
* Kernel#warn accepts multiple args in like puts.
* Kernel#caller accepts second optional argument `n' which specify
required caller size.
* incompatible changes:
* system() and exec() closes non-standard file descriptors
(The default of :close_others option is changed to true by default.)