* eval_intern.h: rename macros rb_thread_raised_* to

rb_ec_raised_*.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60684 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
ko1 2017-11-07 05:22:09 +00:00
parent ee189904f0
commit 48ce4cb414
8 changed files with 27 additions and 29 deletions

2
eval.c
View file

@ -598,7 +598,7 @@ rb_longjmp(rb_execution_context_t *ec, int tag, volatile VALUE mesg, VALUE cause
{
mesg = exc_setup_message(ec, mesg, &cause);
setup_exception(ec, tag, mesg, cause);
rb_thread_raised_clear(rb_ec_thread_ptr(ec));
rb_ec_raised_clear(ec);
EC_JUMP_TAG(ec, tag);
}