From 51411c1f882e8d455249de2768366c25ba3a9b50 Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 28 Feb 2008 05:59:13 +0000 Subject: * eval_error.c (error_handle): commit miss. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15627 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- eval_error.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'eval_error.c') diff --git a/eval_error.c b/eval_error.c index 8c6a0f9455..aef3226f99 100644 --- a/eval_error.c +++ b/eval_error.c @@ -237,7 +237,7 @@ error_handle(int ex) int status = EXIT_FAILURE; rb_thread_t *th = GET_THREAD(); - if (thread_set_raised(th)) + if (rb_thread_set_raised(th)) return EXIT_FAILURE; switch (ex & TAG_MASK) { case 0: @@ -287,6 +287,6 @@ error_handle(int ex) rb_bug("Unknown longjmp status %d", ex); break; } - thread_reset_raised(th); + rb_thread_reset_raised(th); return status; } -- cgit v1.2.3