ruby-changes:10133
From: nobu <ko1@a...>
Date: Tue, 20 Jan 2009 04:02:04 +0900 (JST)
Subject: [ruby-changes:10133] Ruby:r21677 (ruby_1_8): * node.h (rb_thread_raised_clear): should not clear flags other than
nobu 2009-01-20 04:01:44 +0900 (Tue, 20 Jan 2009) New Revision: 21677 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=21677 Log: * node.h (rb_thread_raised_clear): should not clear flags other than raised flags. a patch by Tomoyuki Chikanaga <chikanag AT nippon-control-system.co.jp> at [ruby-dev:37794]. [ruby-dev:37776] Modified files: branches/ruby_1_8/ChangeLog branches/ruby_1_8/node.h branches/ruby_1_8/version.h Index: ruby_1_8/ChangeLog =================================================================== --- ruby_1_8/ChangeLog (revision 21676) +++ ruby_1_8/ChangeLog (revision 21677) @@ -1,3 +1,9 @@ +Tue Jan 20 04:02:44 2009 Nobuyoshi Nakada <nobu@r...> + + * node.h (rb_thread_raised_clear): should not clear flags other than + raised flags. a patch by Tomoyuki Chikanaga <chikanag AT + nippon-control-system.co.jp> at [ruby-dev:37794]. [ruby-dev:37776] + Wed Jan 14 13:09:00 2009 Nobuyoshi Nakada <nobu@r...> * ext/socket/extconf.rb (gai_strerror): checks if available and if Index: ruby_1_8/version.h =================================================================== --- ruby_1_8/version.h (revision 21676) +++ ruby_1_8/version.h (revision 21677) @@ -1,7 +1,7 @@ #define RUBY_VERSION "1.8.7" -#define RUBY_RELEASE_DATE "2009-01-14" +#define RUBY_RELEASE_DATE "2009-01-20" #define RUBY_VERSION_CODE 187 -#define RUBY_RELEASE_CODE 20090114 +#define RUBY_RELEASE_CODE 20090120 #define RUBY_PATCHLEVEL 5000 #define RUBY_VERSION_MAJOR 1 @@ -9,7 +9,7 @@ #define RUBY_VERSION_TEENY 7 #define RUBY_RELEASE_YEAR 2009 #define RUBY_RELEASE_MONTH 1 -#define RUBY_RELEASE_DAY 14 +#define RUBY_RELEASE_DAY 20 #ifdef RUBY_EXTERN RUBY_EXTERN const char ruby_version[]; Index: ruby_1_8/node.h =================================================================== --- ruby_1_8/node.h (revision 21676) +++ ruby_1_8/node.h (revision 21677) @@ -481,7 +481,7 @@ #define rb_thread_raised_set(th, f) ((th)->flags |= (f)) #define rb_thread_raised_reset(th, f) ((th)->flags &= ~(f)) #define rb_thread_raised_p(th, f) (((th)->flags & (f)) != 0) -#define rb_thread_raised_clear(th) ((th)->flags = 0) +#define rb_thread_raised_clear(th) (rb_thread_raised_reset(th, RAISED_MASK)) #if defined(__cplusplus) } /* extern "C" { */ -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/