diff options
| author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-04-04 03:29:31 +0000 |
|---|---|---|
| committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-04-04 03:29:31 +0000 |
| commit | 01e82e14de9a218629ac20024dd28343fd137a44 (patch) | |
| tree | d36cde6deef25fd8bce604a340eb235744976704 | |
| parent | 604645535d3b770c88931c813b0239b39dddc5a2 (diff) | |
| download | ruby-01e82e14de9a218629ac20024dd28343fd137a44.tar.gz ruby-01e82e14de9a218629ac20024dd28343fd137a44.tar.xz ruby-01e82e14de9a218629ac20024dd28343fd137a44.zip | |
* error.c (rb_notimplement): should show the name of this func,
not callee.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@12145 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | error.c | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +Wed Apr 4 12:29:02 2007 NAKAMURA Usaku <usa@ruby-lang.org> + + * error.c (rb_notimplement): should show the name of this func, + not callee. + Wed Apr 4 10:18:04 2007 Nobuyoshi Nakada <nobu@ruby-lang.org> * io.c (popen_exec): should not close close-on-exec FDs. @@ -1029,7 +1029,7 @@ rb_notimplement(void) { rb_raise(rb_eNotImpError, "The %s() function is unimplemented on this machine", - rb_id2name(rb_frame_callee())); + rb_id2name(rb_frame_this_func())); } void |
