mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
use GET_EC()
.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60554 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
502d8d7ccb
commit
d95acd784e
1 changed files with 4 additions and 4 deletions
|
@ -1876,8 +1876,8 @@ rb_f_throw(int argc, VALUE *argv)
|
|||
void
|
||||
rb_throw_obj(VALUE tag, VALUE value)
|
||||
{
|
||||
rb_thread_t *th = GET_THREAD();
|
||||
struct rb_vm_tag *tt = th->ec->tag;
|
||||
rb_execution_context_t *ec = GET_EC();
|
||||
struct rb_vm_tag *tt = ec->tag;
|
||||
|
||||
while (tt) {
|
||||
if (tt->tag == tag) {
|
||||
|
@ -1894,8 +1894,8 @@ rb_throw_obj(VALUE tag, VALUE value)
|
|||
rb_exc_raise(rb_class_new_instance(numberof(desc), desc, rb_eUncaughtThrow));
|
||||
}
|
||||
|
||||
th->ec->errinfo = (VALUE)THROW_DATA_NEW(tag, NULL, TAG_THROW);
|
||||
EC_JUMP_TAG(th->ec, TAG_THROW);
|
||||
ec->errinfo = (VALUE)THROW_DATA_NEW(tag, NULL, TAG_THROW);
|
||||
EC_JUMP_TAG(ec, TAG_THROW);
|
||||
}
|
||||
|
||||
void
|
||||
|
|
Loading…
Reference in a new issue