* io.c (io_fwrite): use rb_w32_write_console under Windows.

* win32/win32.c (rb_w32_write_console): added to write to write
    Unicode using WriteConsoleW for stdout/stderr. [ruby-core:33166]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29955 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
luislavena 2010-11-27 19:49:58 +00:00
parent 1342c3ba27
commit ac0f5a53b6
3 changed files with 34 additions and 0 deletions

4
io.c
View file

@ -961,6 +961,10 @@ do_writeconv(VALUE str, rb_io_t *fptr)
static long
io_fwrite(VALUE str, rb_io_t *fptr, int nosync)
{
#ifdef _WIN32
long len = rb_w32_write_console(str, fptr->fd);
if (len > 0) return len;
#endif
str = do_writeconv(str, fptr);
return io_binwrite(str, RSTRING_PTR(str), RSTRING_LEN(str),
fptr, nosync);