[前][次][番号順一覧][スレッド一覧]

ruby-changes:5892

From: usa <ko1@a...>
Date: Wed, 18 Jun 2008 13:51:22 +0900 (JST)
Subject: [ruby-changes:5892] Ruby:r17400 (trunk): * include/ruby/win32.h (pipe): now pipe is textmode. although this

usa	2008-06-18 13:51:08 +0900 (Wed, 18 Jun 2008)

  New Revision: 17400

  Modified files:
    trunk/ChangeLog
    trunk/include/ruby/win32.h

  Log:
    * include/ruby/win32.h (pipe): now pipe is textmode. although this
      change is experimental, it will be spec if no compatiblity problem
      is reported.
    


  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/include/ruby/win32.h?r1=17400&r2=17399&diff_format=u
  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/ChangeLog?r1=17400&r2=17399&diff_format=u

Index: include/ruby/win32.h
===================================================================
--- include/ruby/win32.h	(revision 17399)
+++ include/ruby/win32.h	(revision 17400)
@@ -134,7 +134,7 @@
 #define utime(_p, _t)		rb_w32_utime(_p, _t)
 #define lseek(_f, _o, _w)	_lseeki64(_f, _o, _w)
 
-#define pipe(p)			_pipe(p, 65536L, O_BINARY)
+#define pipe(p)			_pipe(p, 65536L, 0)
 #define close(h)		rb_w32_close(h)
 #define fclose(f)		rb_w32_fclose(f)
 #define read(f, b, s)		rb_w32_read(f, b, s)
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 17399)
+++ ChangeLog	(revision 17400)
@@ -1,3 +1,9 @@
+Wed Jun 18 13:49:58 2008  NAKAMURA Usaku  <usa@r...>
+
+	* include/ruby/win32.h (pipe): now pipe is textmode. although this
+	  change is experimental, it will be spec if no compatiblity problem
+	  is reported.
+
 Wed Jun 18 12:05:30 2008  Nobuyoshi Nakada  <nobu@r...>
 
 	* marshal.c (w_object, marshal_dump, r_object0, marshal_load): search

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]