summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-07-30 13:13:57 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-07-30 13:13:57 +0000
commitc93c4a8bc764bbd311c3c4b7161b4d86c656cec9 (patch)
treec563dc10542a74c4635ca6e3c4c9e965c56593e2 /ChangeLog
parent397b81fde0a43e55c1c65725a13fb2c9772707e3 (diff)
downloadruby-c93c4a8bc764bbd311c3c4b7161b4d86c656cec9.tar.gz
ruby-c93c4a8bc764bbd311c3c4b7161b4d86c656cec9.tar.xz
ruby-c93c4a8bc764bbd311c3c4b7161b4d86c656cec9.zip
* dir.c (struct dir_data): change path field char * to VALUE.
(mark_dir): new function for mark path field. (free_dir): follow the path field change. (dir_s_alloc): ditto. (dir_initialize): ditto. (dir_s_open): ditto. (dir_inspect): ditto. (dir_path): return (duplicate of) the path field to preserve encoding. [ruby-dev:35685] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@18269 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog12
1 files changed, 12 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 6c2047b16..bdaabd0c6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,15 @@
+Wed Jul 30 22:08:25 2008 Tanaka Akira <akr@fsij.org>
+
+ * dir.c (struct dir_data): change path field char * to VALUE.
+ (mark_dir): new function for mark path field.
+ (free_dir): follow the path field change.
+ (dir_s_alloc): ditto.
+ (dir_initialize): ditto.
+ (dir_s_open): ditto.
+ (dir_inspect): ditto.
+ (dir_path): return (duplicate of) the path field to preserve
+ encoding. [ruby-dev:35685]
+
Wed Jul 30 22:06:56 2008 Yusuke Endoh <mame@tsg.ne.jp>
* string.c (sym_inspect): remove dead code.