summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-05-26 04:51:32 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-05-26 04:51:32 +0000
commitca433168bad83458e02309fca76d9a9e00541419 (patch)
tree05d42bf1f938708d93f8429f6f4804d98cc86482
parent4f54d4710e1edfbcb8b0d7d7feea1bd8c519229f (diff)
* NEWS: add Kernel#caller's second argument.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35802 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--NEWS2
2 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 11d4a22182..0fbb773216 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
diff --git a/NEWS b/NEWS
index 39cd6f9474..53dc75d307 100644
--- a/NEWS
+++ b/NEWS
@@ -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.)