aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--eval.c1
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index b7674b0d86..656c41c96b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Tue Jul 30 09:11:07 2002 Minero Aoki <aamine@loveruby.net>
+
+ * eval.c (rb_thread_join_m): add parameter type declaration.
+
Tue Jul 30 08:37:11 2002 Minero Aoki <aamine@loveruby.net>
* eval.c (localjump_error): add parameter type declaration.
@@ -116,7 +120,7 @@ Fri Jul 12 06:34:05 2002 Minero Aoki <aamine@loveruby.net>
* lib/net/http.rb: HTTP.get_print accepts URI objects.
- * lib/net/http.rb: HTTP.get did not work with URI.
+ * lib/net/http.rb: HTTP.get had not work with URI objects.
Fri Jul 12 02:15:58 2002 Nobuyoshi Nakada <nobu.nokada@softhome.net>
diff --git a/eval.c b/eval.c
index a8bcb8bdf1..8b1ca4d4fd 100644
--- a/eval.c
+++ b/eval.c
@@ -8202,6 +8202,7 @@ static VALUE
rb_thread_join_m(argc, argv, thread)
int argc;
VALUE *argv;
+ VALUE thread;
{
VALUE limit;
double delay = DELAY_INFTY;