From f8a9d044f416e04e0c340fe77bf5c603fc753ff2 Mon Sep 17 00:00:00 2001 From: ko1 Date: Sat, 28 Oct 2017 10:01:54 +0000 Subject: move fields from `th` to `ec`. * vm_core.h: move rb_thread_t::passed_block_handler to rb_execution_context_t::passed_block_handler. Also move rb_thread_t::passed_bmethod_me to rb_execution_context_t::passed_bmethod_me. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60503 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- proc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'proc.c') diff --git a/proc.c b/proc.c index 09ca6a1f1d..48cd97bd38 100644 --- a/proc.c +++ b/proc.c @@ -2099,7 +2099,7 @@ static inline VALUE call_method_data(rb_thread_t *th, const struct METHOD *data, int argc, const VALUE *argv, VALUE passed_procval) { - vm_passed_block_handler_set(th, proc_to_block_handler(passed_procval)); + vm_passed_block_handler_set(th->ec, proc_to_block_handler(passed_procval)); return rb_vm_call(th, data->recv, data->me->called_id, argc, argv, method_callable_method_entry(data)); } -- cgit v1.2.3