* eval.c (rb_f_END): block should be given. [ruby-dev:21497]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4699 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2003-10-05 14:07:07 +00:00
parent f58812a7e2
commit 92abdcefe4
2 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,7 @@
Sun Oct 5 23:07:03 2003 Nobuyoshi Nakada <nobu@ruby-lang.org>
* eval.c (rb_f_END): block should be given. [ruby-dev:21497]
Sun Oct 5 22:51:23 2003 GOTOU Yuuzou <gotoyuzo@notwork.org>
* lib/ext/openssl/extconf.rb: add check for some engine functions

1
eval.c
View File

@ -6462,6 +6462,7 @@ rb_f_END()
{
PUSH_FRAME();
ruby_frame->argc = 0;
ruby_frame->iter = ITER_CUR;
rb_set_end_proc(call_end_proc, rb_block_proc());
POP_FRAME();
}