summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--io.c3
-rw-r--r--version.h2
3 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index b1f9ccacb5..b97350b743 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Tue Aug 11 11:57:35 1998 Yukihiro Matsumoto <matz@netlab.co.jp>
+
+ * version 1.1c2 released.
+
Mon Aug 10 14:05:30 1998 Yukihiro Matsumoto <matz@netlab.co.jp>
* process.c (f_system): removed fflush(stdin).
diff --git a/io.c b/io.c
index 9d5bbc5656..a9fdf97b2b 100644
--- a/io.c
+++ b/io.c
@@ -1991,7 +1991,8 @@ f_select(argc, argv, obj)
int interrupt = 0;
int pending = 0;
- if (rb_scan_args(argc, argv, "13", &read, &write, &except, &timeout)<4) {
+ rb_scan_args(argc, argv, "13", &read, &write, &except, &timeout);
+ if (NIL_P(timeout)) {
tp = NULL;
}
else {
diff --git a/version.h b/version.h
index dccc5e6ef2..5f8d1a0167 100644
--- a/version.h
+++ b/version.h
@@ -1,2 +1,2 @@
#define RUBY_VERSION "1.1c2"
-#define VERSION_DATE "98/08/10"
+#define VERSION_DATE "98/08/11"