diff --git a/ChangeLog b/ChangeLog index 98057975be..3a4bc8443f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Wed May 2 20:39:35 2001 WATANABE Hirofumi + + * dir.c (rb_glob, rb_globi): remove unnecessary FNM_PATHNAME. + Wed May 2 11:46:13 2001 K.Kosako * eval.c (block_pass): should not downgrade safe level. diff --git a/dir.c b/dir.c index 4a96e488ca..0289b661c9 100644 --- a/dir.c +++ b/dir.c @@ -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