ruby-changes:4137
From: ko1@a...
Date: Thu, 28 Feb 2008 14:59:27 +0900 (JST)
Subject: [ruby-changes:4137] nobu - Ruby:r15627 (trunk): * eval_error.c (error_handle): commit miss.
nobu 2008-02-28 14:59:13 +0900 (Thu, 28 Feb 2008)
New Revision: 15627
Modified files:
trunk/eval_error.c
Log:
* eval_error.c (error_handle): commit miss.
http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/eval_error.c?r1=15627&r2=15626&diff_format=u
Index: eval_error.c
===================================================================
--- eval_error.c (revision 15626)
+++ eval_error.c (revision 15627)
@@ -237,7 +237,7 @@
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 @@
rb_bug("Unknown longjmp status %d", ex);
break;
}
- thread_reset_raised(th);
+ rb_thread_reset_raised(th);
return status;
}
--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/