mirror of
https://github.com/ruby/ruby.git
synced 2025-09-15 16:44:01 +02:00
* thread.c (rb_thread_aset): fixed argument type.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@27678 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
db1d9196ef
commit
349b047270
3 changed files with 7 additions and 3 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
Sun May 9 00:27:46 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
|
* thread.c (rb_thread_aset): fixed argument type.
|
||||||
|
|
||||||
Sat May 8 19:03:31 2010 Yuki Sonoda (Yugui) <yugui@yugui.jp>
|
Sat May 8 19:03:31 2010 Yuki Sonoda (Yugui) <yugui@yugui.jp>
|
||||||
|
|
||||||
* spec/default.mspec (config): . is no longer in $:.
|
* spec/default.mspec (config): . is no longer in $:.
|
||||||
|
|
2
thread.c
2
thread.c
|
@ -2052,7 +2052,7 @@ rb_thread_local_aset(VALUE thread, ID id, VALUE val)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
static VALUE
|
static VALUE
|
||||||
rb_thread_aset(VALUE self, ID id, VALUE val)
|
rb_thread_aset(VALUE self, VALUE id, VALUE val)
|
||||||
{
|
{
|
||||||
return rb_thread_local_aset(self, rb_to_id(id), val);
|
return rb_thread_local_aset(self, rb_to_id(id), val);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#define RUBY_VERSION "1.9.2"
|
#define RUBY_VERSION "1.9.2"
|
||||||
#define RUBY_RELEASE_DATE "2010-05-08"
|
#define RUBY_RELEASE_DATE "2010-05-09"
|
||||||
#define RUBY_PATCHLEVEL -1
|
#define RUBY_PATCHLEVEL -1
|
||||||
#define RUBY_BRANCH_NAME "trunk"
|
#define RUBY_BRANCH_NAME "trunk"
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@
|
||||||
#define RUBY_VERSION_TEENY 1
|
#define RUBY_VERSION_TEENY 1
|
||||||
#define RUBY_RELEASE_YEAR 2010
|
#define RUBY_RELEASE_YEAR 2010
|
||||||
#define RUBY_RELEASE_MONTH 5
|
#define RUBY_RELEASE_MONTH 5
|
||||||
#define RUBY_RELEASE_DAY 8
|
#define RUBY_RELEASE_DAY 9
|
||||||
|
|
||||||
#include "ruby/version.h"
|
#include "ruby/version.h"
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue