summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog9
1 files changed, 4 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 0fbb773216..60d5ae38b0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -14,11 +14,10 @@ Sat May 26 13:40:29 2012 Koichi Sasada <ko1@atdot.net>
FrameInfo#filepath: full filepath.
FrameInfo#iseq: iseq if it is iseq frame (defined by ruby script)
FrameInfo#to_s: return caller() method style string.
- RubyVM::FrameInfoFrameInfo.caller(n, lev) returns array of
- FrameInfo objects. The name "RubyVM::FrameInfoFrameInfo.caller"
- is long and ambiguous (same as caller() method), we need to change
- the name before Ruby 2.0 release.
- Good names or comments are welcome.
+ RubyVM::FrameInfo.caller(n, lev) returns array of FrameInfo objects.
+ The name "RubyVM::FrameInfo.caller" is long and ambiguous (it is
+ confusing with Kernel::caller() method), we need to change the name
+ before Ruby 2.0 release. Good names or comments are welcome.
* test/ruby/test_backtrace.rb: add a test for above change.