summaryrefslogtreecommitdiff
path: root/eval.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-05-31 08:10:04 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-05-31 08:10:04 +0000
commitf33592b3914c88346cb4e4afa8751ec67154680d (patch)
tree3f4bbae8906ab8df3423b18290535b878d9cc064 /eval.c
parentc0c9859fcb25838a9971f008c61056709bffcbd6 (diff)
2000-05-31
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_4@720 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/eval.c b/eval.c
index 0cc4d61ccc..76718d3de5 100644
--- a/eval.c
+++ b/eval.c
@@ -4618,7 +4618,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