summaryrefslogtreecommitdiff
path: root/thread.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-10-10 08:57:02 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-10-10 08:57:02 +0000
commit478d3535efa17927f872549d3a5affcbc668e585 (patch)
treed90e76a61f5668928251e941f8100194b782d847 /thread.c
parentd45189ba5b336e50e39b8190cfa01a17d6331db5 (diff)
* eval.c (rb_threadptr_errinfo): renamed.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25283 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'thread.c')
-rw-r--r--thread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/thread.c b/thread.c
index fc33fe568d..962a054157 100644
--- a/thread.c
+++ b/thread.c
@@ -1248,7 +1248,7 @@ rb_threadptr_execute_interrupts_rec(rb_thread_t *th, int sched_depth)
}
else {
if (err == eReRaiseSignal) {
- err = rb_rubylevel_thread_errinfo(th);
+ err = rb_threadptr_errinfo(th);
err = rb_make_exception(NIL_P(err) ? 0 : 1, &err);
}
rb_exc_raise(err);