From 6803c4e2a8e48e8f2f855015e4933a9947913b92 Mon Sep 17 00:00:00 2001 From: kosaki Date: Sun, 18 Oct 2015 01:17:50 +0000 Subject: [PATCH] * include/ruby/defines.h (DOSISH): add comments. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52160 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ include/ruby/defines.h | 5 +++++ 2 files changed, 9 insertions(+) diff --git a/ChangeLog b/ChangeLog index 1ed85711a8..10b9fa22e5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Sun Oct 18 08:50:15 2015 KOSAKI Motohiro + + * include/ruby/defines.h (DOSISH): add comments. + Sun Oct 18 08:26:51 2015 KOSAKI Motohiro * io.c (fptr_finalize): don't release gvl if fptr is not writable. diff --git a/include/ruby/defines.h b/include/ruby/defines.h index 6dfb44e407..88ab53f8e6 100644 --- a/include/ruby/defines.h +++ b/include/ruby/defines.h @@ -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