mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* include/ruby/defines.h (DOSISH): add comments.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52160 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
a0a77c5b33
commit
6803c4e2a8
2 changed files with 9 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
|||
Sun Oct 18 08:50:15 2015 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
|
||||
|
||||
* include/ruby/defines.h (DOSISH): add comments.
|
||||
|
||||
Sun Oct 18 08:26:51 2015 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
|
||||
|
||||
* io.c (fptr_finalize): don't release gvl if fptr is not writable.
|
||||
|
|
|
@ -148,6 +148,11 @@ void xfree(void*);
|
|||
#endif
|
||||
|
||||
#if defined(_WIN32) || defined(__EMX__)
|
||||
/*
|
||||
DOSISH mean MS-Windows style filesystem.
|
||||
But you should use more precise macros like DOSISH_DRIVE_LETTER, PATH_SEP,
|
||||
ENV_IGNORECASE or CASEFOLD_FILESYSTEM.
|
||||
*/
|
||||
#define DOSISH 1
|
||||
# define DOSISH_DRIVE_LETTER
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue