summaryrefslogtreecommitdiffstats
path: root/win32
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-09-16 13:46:05 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-09-16 13:46:05 +0000
commit95fcf3bb76632d8b9d87772eb94ab866f25aaf14 (patch)
tree7515d1fc46497df96de41676672651d81d7a4d83 /win32
parent60421cde746f81e3498a067df0baf7e44cad0795 (diff)
downloadruby-95fcf3bb76632d8b9d87772eb94ab866f25aaf14.tar.gz
ruby-95fcf3bb76632d8b9d87772eb94ab866f25aaf14.tar.xz
ruby-95fcf3bb76632d8b9d87772eb94ab866f25aaf14.zip
* dir.c (rb_push_glob): fix delimiter bug. fixed: [ruby-dev:27105]
* dir.c (dir_s_aref, dir_s_glob): allow multiple patterns. [ruby-dev:27110] * win32/win32.c (cmdglob): enable brace expansion. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@9184 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'win32')
-rw-r--r--win32/win32.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/win32.c b/win32/win32.c
index d32a651ef..7518e1e72 100644
--- a/win32/win32.c
+++ b/win32/win32.c
@@ -1061,7 +1061,7 @@ cmdglob(NtCmdLineElement *patt, NtCmdLineElement **tail)
for (p = buf; *p; p = CharNext(p))
if (*p == '\\')
*p = '/';
- ruby_glob(buf, 0, insert, (VALUE)&tail);
+ ruby_brace_glob(buf, 0, insert, (VALUE)&tail);
if (buf != buffer)
free(buf);