diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-12-21 07:02:55 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-12-21 07:02:55 +0000 |
| commit | 046aa3f55e864d2895f398f65fd24a7427c5a27a (patch) | |
| tree | 623f37d5acf019af9868527458fb0de57e639f66 /numeric.c | |
| parent | e8911f9e7f3e08d4f5f395d7d529a7fe19c4f78f (diff) | |
| download | ruby-046aa3f55e864d2895f398f65fd24a7427c5a27a.tar.gz ruby-046aa3f55e864d2895f398f65fd24a7427c5a27a.tar.xz ruby-046aa3f55e864d2895f398f65fd24a7427c5a27a.zip | |
* io.c (rb_io_s_read): allow specifying encoding explicitly.
* io.c (rb_io_binmode): specifies encoding to ASCII-8BIT (binary).
* io.c (rb_io_s_read): IO should be in binary mode when offset is
specified.
* encoding.c (rb_to_encoding): returns default encoding if no
corresponding encoding found.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14411 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'numeric.c')
| -rw-r--r-- | numeric.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1860,6 +1860,7 @@ int_chr(int argc, VALUE *argv, VALUE num) break; } enc = rb_to_encoding(argv[0]); + if (!enc) enc = rb_default_encoding(); if (i < 0 || (n = rb_enc_codelen(i, enc)) <= 0) goto out_of_range; str = rb_enc_str_new(0, n, enc); rb_enc_mbcput(i, RSTRING_PTR(str), enc); |
