From 5f16a15d5e981bba53a1fb9f9f96dccef09f238e Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 8 Nov 2001 12:42:39 +0000 Subject: * eval.c (rb_trap_eval): avoid annoying warning with signal. [ruby-talk:23225] * eval.c (rb_call0): adjust caller source file/line while evaluating optional arguments. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@1819 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- eval.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'eval.c') diff --git a/eval.c b/eval.c index 90f17e5be..e91fa8a7a 100644 --- a/eval.c +++ b/eval.c @@ -1394,9 +1394,11 @@ rb_trap_eval(cmd, sig) VALUE val; /* OK */ PUSH_TAG(PROT_NONE); + PUSH_ITER(ITER_NOT); if ((state = EXEC_TAG()) == 0) { val = rb_eval_cmd(cmd, rb_ary_new3(1, INT2FIX(sig))); } + POP_ITER(); POP_TAG(); if (state) { rb_trap_immediate = 0; @@ -4559,7 +4561,11 @@ rb_call0(klass, recv, id, argc, argv, body, nosuper) argv++; argc--; opt = opt->nd_next; } - rb_eval(recv, opt); + if (opt) { + ruby_sourcefile = opt->nd_file; + ruby_sourceline = nd_line(opt); + rb_eval(recv, opt); + } } local_vars = ruby_scope->local_vars; if (node->nd_rest >= 0) { -- cgit