mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* error.c (rb_notimplement): should show the name of this func,
not callee. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12145 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
1f9d0992ab
commit
7f8eb55d6c
2 changed files with 6 additions and 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.
|
||||
|
|
2
error.c
2
error.c
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue