summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--eval.c1
2 files changed, 5 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 4ac231a5a3..f1c53d92db 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
diff --git a/eval.c b/eval.c
index 3025d71bd6..7f2062ff11 100644
--- a/eval.c
+++ b/eval.c
@@ -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();
}