summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-06-11 23:52:20 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-06-11 23:52:20 +0000
commit3436437b3c118f4035ccfdb3254ad4efc62eea9e (patch)
treeeb622401eadba5fd69c89f1d8b0ae91b2133ddf1 /ChangeLog
parentd11863b154967fb258e6b1465657391f3bb5d08b (diff)
downloadruby-3436437b3c118f4035ccfdb3254ad4efc62eea9e.tar.gz
ruby-3436437b3c118f4035ccfdb3254ad4efc62eea9e.tar.xz
ruby-3436437b3c118f4035ccfdb3254ad4efc62eea9e.zip
* io.c (read_all): should use io_read_encoding(), not
io_input_encoding(). * io.c (rb_io_getline_1): reduce calling of io_read_encoding(). * string.c (rb_str_scan): need not to restore $~ value, so avoid pinning match object. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@17104 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog10
1 files changed, 10 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 5f1e69a3e..11bd45183 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+Thu Jun 12 08:47:51 2008 Yukihiro Matsumoto <matz@ruby-lang.org>
+
+ * io.c (read_all): should use io_read_encoding(), not
+ io_input_encoding().
+
+ * io.c (rb_io_getline_1): reduce calling of io_read_encoding().
+
+ * string.c (rb_str_scan): need not to restore $~ value, so avoid
+ pinning match object.
+
Thu Jun 12 02:49:40 2008 Yusuke Endoh <mame@tsg.ne.jp>
* ext/stringio/stringio.c (strio_init): rewind when reopened.