aboutsummaryrefslogtreecommitdiffstats
path: root/eval.c
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-11-07 05:22:09 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-11-07 05:22:09 +0000
commitbf938b5cf7d88cb8005696a81bde625566a09700 (patch)
treec48f45a0bb33edc2b5c507f2727b840c929f3280 /eval.c
parentc7bae7eafb1424f2b2c6b3c591168e0d9baa4cde (diff)
downloadruby-bf938b5cf7d88cb8005696a81bde625566a09700.tar.gz
* 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
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/eval.c b/eval.c
index 76df7370fb..46c7c1872d 100644
--- a/eval.c
+++ b/eval.c
@@ -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);
}