aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkosaki <kosaki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-10-18 01:17:50 +0000
committerkosaki <kosaki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-10-18 01:17:50 +0000
commit6803c4e2a8e48e8f2f855015e4933a9947913b92 (patch)
treeb0b8165cd31e403e7b8d213d94e335458853e826
parenta0a77c5b33858ca8d567e9bceee3d7882db58a19 (diff)
downloadruby-6803c4e2a8e48e8f2f855015e4933a9947913b92.tar.gz
* include/ruby/defines.h (DOSISH): add comments.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52160 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--include/ruby/defines.h5
2 files changed, 9 insertions, 0 deletions
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 <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.
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