* io.c (IO#new):

Fix indentation from r37444
  [ruby-core:48052] [Bug #7179]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37568 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
zzak 2012-11-09 00:28:41 +00:00
parent bb250b002b
commit de794aefa6
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
Fri Nov 9 09:30:00 2012 Zachary Scott <zachary@zacharyscott.net>
* io.c (IO#new):
Fix indentation from r37444
[ruby-core:48052] [Bug #7179]
Thu Nov 9 07:36:00 2012 Kenta Murata <mrkn@mrkn.jp>
* bignum.c (bigmul0): enable big_mul_toom3.

4
io.c
View File

@ -6962,7 +6962,7 @@ rb_io_stdio_file(rb_io_t *fptr)
*
* Ruby allows the following open modes:
*
* "r" Read-only, starts at beginning of file (default mode).
* "r" Read-only, starts at beginning of file (default mode).
*
* "r+" Read-write, starts at beginning of file.
*
@ -6982,7 +6982,7 @@ rb_io_stdio_file(rb_io_t *fptr)
* The following modes must be used separately, and along with one or more of
* the modes seen above.
*
* "b" Binary file mode
* "b" Binary file mode
* Suppresses EOL <-> CRLF conversion on Windows. And
* sets external encoding to ASCII-8BIT unless explicitly
* specified.