summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-01-18 04:49:14 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-01-18 04:49:14 +0000
commite9836b1b460e6839fda2256517d925b43a2c6d71 (patch)
tree3af118754c56e22801f2c733c2aa3c6da3b3e299 /ChangeLog
parentea393a2ea2b3193b9583f4ff19d08622cb317233 (diff)
downloadruby-e9836b1b460e6839fda2256517d925b43a2c6d71.tar.gz
ruby-e9836b1b460e6839fda2256517d925b43a2c6d71.tar.xz
ruby-e9836b1b460e6839fda2256517d925b43a2c6d71.zip
* string.c (rb_str_dump): preserve the encoding of source string
if it is ASCII compatible. otherwise, add '.force_encoding()' for ugly work around. maybe we should implement some other way to keep non ASCII encoding in dumped string. [ruby-dev:33142] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@15108 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog7
1 files changed, 7 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index b691e6cc8..86f5b595b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -98,6 +98,13 @@ Thu Jan 17 21:01:25 2008 Tadayoshi Funaba <tadf@dotrb.org>
* lib/date.rb, lib/date/format.rb: some trivial changes.
+Thu Jan 17 13:07:18 2008 Yukihiro Matsumoto <matz@ruby-lang.org>
+
+ * string.c (rb_str_dump): preserve the encoding of source string
+ if it is ASCII compatible. otherwise, add '.force_encoding()'
+ for ugly work around. maybe we should implement some other way
+ to keep non ASCII encoding in dumped string. [ruby-dev:33142]
+
Thu Jan 17 10:30:32 2008 Yukihiro Matsumoto <matz@ruby-lang.org>
* io.c (io_fwrite): always flush IO on tty, even without newlines.