mirror of
https://github.com/ruby/ruby.git
synced 2025-09-21 03:24:00 +02:00
* dir.c: shoudn't use ruby object in globbing, because glob service
routines are called before initializing ruby on some platforms (ex. windows). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17953 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
933d553de0
commit
2db158667a
3 changed files with 81 additions and 53 deletions
|
@ -725,8 +725,8 @@ struct RBignum {
|
|||
|
||||
void rb_obj_infect(VALUE,VALUE);
|
||||
|
||||
typedef int ruby_glob_func(VALUE,VALUE);
|
||||
void rb_glob(const char*,void(*)(VALUE,VALUE),VALUE);
|
||||
typedef int ruby_glob_func(const char*,VALUE, void*);
|
||||
void rb_glob(const char*,void(*)(const char*,VALUE,void*),VALUE);
|
||||
int ruby_glob(const char*,int,ruby_glob_func*,VALUE);
|
||||
int ruby_brace_glob(const char*,int,ruby_glob_func*,VALUE);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue