summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-05-27 14:47:29 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-05-27 14:47:29 +0000
commit97c175fa19d0d58eaabace94f737c4c08368b476 (patch)
tree2faf774fe61abce760265a0d1ecde298ed04924d
parent84abef0fc08f7182f9c76175ef478898612b0bdf (diff)
* file.c (rb_home_dir): set filesystem encoding.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28040 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--file.c1
2 files changed, 5 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 86fa364fa3..674201a034 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Thu May 27 23:38:31 2010 NARUSE, Yui <naruse@ruby-lang.org>
+
+ * file.c (rb_home_dir): set filesystem encoding.
+
Thu May 27 23:29:18 2010 NARUSE, Yui <naruse@ruby-lang.org>
* file.c (file_expand_path): set encoding as the same of fname
diff --git a/file.c b/file.c
index ed033a71af..7c980f3732 100644
--- a/file.c
+++ b/file.c
@@ -2828,6 +2828,7 @@ rb_home_dir(const char *user, VALUE result)
}
}
#endif
+ rb_enc_associate_index(result, rb_filesystem_encindex());
return result;
}