diff options
| author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-07-10 08:22:04 +0000 |
|---|---|---|
| committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-07-10 08:22:04 +0000 |
| commit | 3d74cbf575a750698dbcb045fc7f364364076a93 (patch) | |
| tree | 6701dbba3221391761f5d0f6ed9c2f8fd52cc4b7 | |
| parent | 0d3df26ab99a5b9224d9c24e8456dad36f898aad (diff) | |
| download | ruby-3d74cbf575a750698dbcb045fc7f364364076a93.tar.gz ruby-3d74cbf575a750698dbcb045fc7f364364076a93.tar.xz ruby-3d74cbf575a750698dbcb045fc7f364364076a93.zip | |
* win32/win32.c (insert): follow recent changes of globbing.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@17992 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | win32/win32.c | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +Thu Jul 10 17:20:50 2008 NAKAMURA Usaku <usa@ruby-lang.org> + + * win32/win32.c (insert): follow recent changes of globbing. + Thu Jul 10 14:09:05 2008 Nobuyoshi Nakada <nobu@ruby-lang.org> * ext/coverage/coverage.c (rb_coverage_start): return nil. diff --git a/win32/win32.c b/win32/win32.c index dec12eb8d..c4521b0e1 100644 --- a/win32/win32.c +++ b/win32/win32.c @@ -1039,7 +1039,7 @@ typedef struct _NtCmdLineElement { #define NTSTRING 0x4 // element contains a quoted string static int -insert(const char *path, VALUE vinfo) +insert(const char *path, VALUE vinfo, void *enc) { NtCmdLineElement *tmpcurr; NtCmdLineElement ***tail = (NtCmdLineElement ***)vinfo; |
