* thread.c (rb_thread_aset): fixed argument type.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27678 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2010-05-08 15:27:48 +00:00
parent 9f7feadf03
commit 6aa05eba8a
3 changed files with 7 additions and 3 deletions

View File

@ -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 23:09:44 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
* NEWS (io/console): IO#noecho and IO#raw without block are

View File

@ -2052,7 +2052,7 @@ rb_thread_local_aset(VALUE thread, ID id, VALUE val)
*/
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);
}

View File

@ -1,5 +1,5 @@
#define RUBY_VERSION "1.9.3"
#define RUBY_RELEASE_DATE "2010-05-08"
#define RUBY_RELEASE_DATE "2010-05-09"
#define RUBY_PATCHLEVEL -1
#define RUBY_BRANCH_NAME "trunk"
@ -8,7 +8,7 @@
#define RUBY_VERSION_TEENY 1
#define RUBY_RELEASE_YEAR 2010
#define RUBY_RELEASE_MONTH 5
#define RUBY_RELEASE_DAY 8
#define RUBY_RELEASE_DAY 9
#include "ruby/version.h"