summaryrefslogtreecommitdiff
path: root/io.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-09-12 20:38:17 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-09-12 20:38:17 +0000
commit1796817e46b96e70d0e2e1dd9884429c82982ebd (patch)
treea7817767e49bd70e4bd90e2567a0c4c811066c95 /io.c
parent53fd35c30467468c72acd881d99a17d1fba6b1dd (diff)
* io.c (Init_IO): update BINARY comment. it should not change the
encoding of the result to ASCII-8BIT. [ruby-talk:387719] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33260 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'io.c')
-rw-r--r--io.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/io.c b/io.c
index 0184b770ba..b3bd0ce52b 100644
--- a/io.c
+++ b/io.c
@@ -10792,7 +10792,7 @@ Init_IO(void)
#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));