summaryrefslogtreecommitdiff
path: root/file.c
diff options
context:
space:
mode:
authoryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-06-21 10:34:31 +0000
committeryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-06-21 10:34:31 +0000
commit2a60fec3367495893105dceec9bb7254545c96b9 (patch)
tree2bb4ba82e11a00a670a715e68e3ef6f30a6d13e5 /file.c
parent701615379db12dcab080de9d42576e5ee5a75f75 (diff)
merges r23729 from trunk into ruby_1_9_1.
-- * file.c (file_expand_path): drive letter is ascii only. [ruby-dev:38612] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_1@23797 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'file.c')
-rw-r--r--file.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/file.c b/file.c
index 4ea759fa37..a4082b9b1f 100644
--- a/file.c
+++ b/file.c
@@ -2665,6 +2665,7 @@ file_expand_path(VALUE fname, VALUE dname, int abs_mode, VALUE result)
memcpy(p, s, 2);
p += 2;
s += 2;
+ rb_enc_associate_index(result, rb_usascii_encindex());
}
else {
/* specified drive, but not full path */