diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-01-29 08:05:29 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-01-29 08:05:29 +0000 |
commit | ccf2da1d94cc25a138a3f9bc7e327115f2862378 (patch) | |
tree | 9f000cac9ecba3ce539bde27a34350e985e50337 /win32 | |
parent | 684338c2c2709593adde6afc6fcba164606b991b (diff) | |
download | ruby-ccf2da1d94cc25a138a3f9bc7e327115f2862378.tar.gz ruby-ccf2da1d94cc25a138a3f9bc7e327115f2862378.tar.xz ruby-ccf2da1d94cc25a138a3f9bc7e327115f2862378.zip |
* dir.c: merge tuning from H.Yamamoto <ocean@m2.ccsnet.ne.jp>.
[ruby-dev:22761]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5577 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'win32')
-rw-r--r-- | win32/win32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/win32.c b/win32/win32.c index 4a6479bfa..28fb46776 100644 --- a/win32/win32.c +++ b/win32/win32.c @@ -1019,7 +1019,7 @@ cmdglob(NtCmdLineElement *patt, NtCmdLineElement **tail) for (p = buf; *p; p = CharNext(p)) if (*p == '\\') *p = '/'; - rb_globi(buf, insert, (VALUE)&tail); + rb_glob(buf, insert, (VALUE)&tail); if (buf != buffer) free(buf); |