ruby-changes:21211
From: matz <ko1@a...>
Date: Tue, 13 Sep 2011 05:40:23 +0900 (JST)
Subject: [ruby-changes:21211] matz:r33260 (trunk): * io.c (Init_IO): update BINARY comment. it should not change the
matz 2011-09-13 05:38:17 +0900 (Tue, 13 Sep 2011) New Revision: 33260 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=33260 Log: * io.c (Init_IO): update BINARY comment. it should not change the encoding of the result to ASCII-8BIT. [ruby-talk:387719] Modified files: trunk/ChangeLog trunk/io.c Index: ChangeLog =================================================================== --- ChangeLog (revision 33259) +++ ChangeLog (revision 33260) @@ -1,3 +1,8 @@ +Tue Sep 13 05:37:15 2011 Yukihiro Matsumoto <matz@r...> + + * io.c (Init_IO): update BINARY comment. it should not change the + encoding of the result to ASCII-8BIT. [ruby-talk:387719] + Mon Sep 12 19:55:00 2011 KOSAKI Motohiro <kosaki.motohiro@g...> * thread.c (rb_thread_select): fix to ignore an argument Index: io.c =================================================================== --- io.c (revision 33259) +++ io.c (revision 33260) @@ -10792,7 +10792,7 @@ #ifndef O_BINARY # define O_BINARY 0 #endif - /* disable line code conversion and make ASCII-8BIT */ + /* disable line code conversion */ rb_file_const("BINARY", INT2FIX(O_BINARY)); #ifdef O_SYNC rb_file_const("SYNC", INT2FIX(O_SYNC)); -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/