Skip to content

Commit 876cb96

Browse files
author
matz
committed
*** empty log message ***
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/v1_1r@284 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent 0993256 commit 876cb96

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

ChangeLog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
Tue Aug 11 11:57:35 1998 Yukihiro Matsumoto <matz@netlab.co.jp>
2+
3+
* version 1.1c2 released.
4+
15
Mon Aug 10 14:05:30 1998 Yukihiro Matsumoto <matz@netlab.co.jp>
26

37
* process.c (f_system): removed fflush(stdin).

io.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1991,7 +1991,8 @@ f_select(argc, argv, obj)
19911991
int interrupt = 0;
19921992
int pending = 0;
19931993

1994-
if (rb_scan_args(argc, argv, "13", &read, &write, &except, &timeout)<4) {
1994+
rb_scan_args(argc, argv, "13", &read, &write, &except, &timeout);
1995+
if (NIL_P(timeout)) {
19951996
tp = NULL;
19961997
}
19971998
else {

version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
#define RUBY_VERSION "1.1c2"
2-
#define VERSION_DATE "98/08/10"
2+
#define VERSION_DATE "98/08/11"

0 commit comments

Comments
 (0)