diff options
| author | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2001-05-02 12:07:30 +0000 |
|---|---|---|
| committer | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2001-05-02 12:07:30 +0000 |
| commit | 4e81e29244bb6adc418dfc96537f815367bb7323 (patch) | |
| tree | 914f53a00613f8c122c05d12dd2bea1da2a44a5a /dir.c | |
| parent | 7678f4b6442f94bba84f1e7cd21d6fa87d3d223f (diff) | |
| download | ruby-4e81e29244bb6adc418dfc96537f815367bb7323.tar.gz ruby-4e81e29244bb6adc418dfc96537f815367bb7323.tar.xz ruby-4e81e29244bb6adc418dfc96537f815367bb7323.zip | |
* dir.c (rb_glob, rb_globi): remove unnecessary FNM_PATHNAME.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@1358 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'dir.c')
| -rw-r--r-- | dir.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -753,7 +753,7 @@ rb_glob(path, func, arg) void (*func)(); VALUE arg; { - glob_helper(path, FNM_PERIOD|FNM_PATHNAME, func, arg); + glob_helper(path, FNM_PERIOD, func, arg); } void @@ -762,7 +762,7 @@ rb_globi(path, func, arg) void (*func)(); VALUE arg; { - glob_helper(path, FNM_PERIOD|FNM_PATHNAME|FNM_NOCASE, func, arg); + glob_helper(path, FNM_PERIOD|FNM_NOCASE, func, arg); } static void |
