summaryrefslogtreecommitdiffstats
path: root/file.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-05-31 03:10:07 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-05-31 03:10:07 +0000
commit9a8a22cd0fb59c99c69b11a130a30066624c9d13 (patch)
tree813d68b48b4967d5f0e0fadc8e9386cb49a5e85a /file.c
parent4a1e525537077b198e8be1a2560963f80a723cca (diff)
downloadruby-9a8a22cd0fb59c99c69b11a130a30066624c9d13.tar.gz
ruby-9a8a22cd0fb59c99c69b11a130a30066624c9d13.tar.xz
ruby-9a8a22cd0fb59c99c69b11a130a30066624c9d13.zip
2000-05-31
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@719 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'file.c')
-rw-r--r--file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/file.c b/file.c
index 94f1ecb62..6d99c3016 100644
--- a/file.c
+++ b/file.c
@@ -1950,7 +1950,7 @@ is_absolute_path(path)
const char *path;
{
if (path[0] == '/') return 1;
-# if defined(MSDOS) || defined(NT) || defined(__human68k__) || defined(__EMX__)
+# if defined DOSISH
if (path[0] == '\\') return 1;
if (strlen(path) > 2 && path[1] == ':') return 1;
# endif