aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-10-08 23:16:20 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-10-08 23:16:20 +0000
commit88533a5351c302a5d67a506a63db1b199244d143 (patch)
tree2bd5f62fa34884f4f21bc2f965af8c45ce01c85d
parent9c06fa133e0826bea96c1c80cddc92151ddd535b (diff)
downloadruby-88533a5351c302a5d67a506a63db1b199244d143.tar.gz
* thread.c (rb_threadptr_remove_event_hook): fix typo.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29427 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--thread.c8
-rw-r--r--version.h4
3 files changed, 10 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index ad0aceb907..fe945f116f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Sat Oct 9 08:16:01 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
+
+ * thread.c (rb_threadptr_remove_event_hook): fix typo.
+
Fri Oct 8 10:52:25 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
* common.mk (RBCONFIG): depends on version.h due to
diff --git a/thread.c b/thread.c
index 11c87be183..856d86dd71 100644
--- a/thread.c
+++ b/thread.c
@@ -3847,7 +3847,7 @@ remove_event_hook(rb_event_hook_t **root, rb_event_hook_func_t func)
}
static int
-rb_threadptr_revmove_event_hook(rb_thread_t *th, rb_event_hook_func_t func)
+rb_threadptr_remove_event_hook(rb_thread_t *th, rb_event_hook_func_t func)
{
int ret = remove_event_hook(&th->event_hooks, func);
thread_reset_event_flags(th);
@@ -3857,7 +3857,7 @@ rb_threadptr_revmove_event_hook(rb_thread_t *th, rb_event_hook_func_t func)
int
rb_thread_remove_event_hook(VALUE thval, rb_event_hook_func_t func)
{
- return rb_threadptr_revmove_event_hook(thval2thread_t(thval), func);
+ return rb_threadptr_remove_event_hook(thval2thread_t(thval), func);
}
int
@@ -3879,7 +3879,7 @@ clear_trace_func_i(st_data_t key, st_data_t val, st_data_t flag)
{
rb_thread_t *th;
GetThreadPtr((VALUE)key, th);
- rb_threadptr_revmove_event_hook(th, 0);
+ rb_threadptr_remove_event_hook(th, 0);
return ST_CONTINUE;
}
@@ -3994,7 +3994,7 @@ thread_set_trace_func_m(VALUE obj, VALUE trace)
{
rb_thread_t *th;
GetThreadPtr(obj, th);
- rb_threadptr_revmove_event_hook(th, call_trace_func);
+ rb_threadptr_remove_event_hook(th, call_trace_func);
if (NIL_P(trace)) {
return Qnil;
diff --git a/version.h b/version.h
index f0dd651cad..7fc749ab17 100644
--- a/version.h
+++ b/version.h
@@ -1,11 +1,11 @@
#define RUBY_VERSION "1.9.3"
-#define RUBY_RELEASE_DATE "2010-10-08"
+#define RUBY_RELEASE_DATE "2010-10-09"
#define RUBY_PATCHLEVEL -1
#define RUBY_BRANCH_NAME "trunk"
#define RUBY_RELEASE_YEAR 2010
#define RUBY_RELEASE_MONTH 10
-#define RUBY_RELEASE_DAY 8
+#define RUBY_RELEASE_DAY 9
#include "ruby/version.h"