Skip to content

Commit f443db2

Browse files
committed
merge -r 12278:12280
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8_6@12334 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent cd9df2b commit f443db2

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
Wed May 23 05:55:04 2007 NAKAMURA Usaku <usa@ruby-lang.org>
2+
3+
* win32/win32.c (init_stdhandle): stderr should be without buffering,
4+
but mswin32 use buffering when stderr is not connected to tty.
5+
16
Wed May 23 05:35:42 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
27

38
* bignum.c (rb_big_pow): truncate all zero BDIGITs. [ruby-dev:30733]

version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#define RUBY_RELEASE_DATE "2007-05-23"
33
#define RUBY_VERSION_CODE 186
44
#define RUBY_RELEASE_CODE 20070523
5-
#define RUBY_PATCHLEVEL 22
5+
#define RUBY_PATCHLEVEL 23
66

77
#define RUBY_VERSION_MAJOR 1
88
#define RUBY_VERSION_MINOR 8

win32/win32.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1778,6 +1778,7 @@ init_stdhandle(void)
17781778
if (fileno(stderr) < 0) {
17791779
stderr->_file = 2;
17801780
}
1781+
setvbuf(stderr, NULL, _IONBF, 0);
17811782
}
17821783
#else
17831784

0 commit comments

Comments
 (0)