summaryrefslogtreecommitdiff
path: root/read.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@redhat.com>1995-03-10 19:07:26 +0000
committerRoland McGrath <roland@redhat.com>1995-03-10 19:07:26 +0000
commitaceefb74da02520ee25fd93183e902f4577929f5 (patch)
tree60ce8986aaee388a910a1d5e3b0e51ad07a8a840 /read.c
parentf38d98e9885f0065cc8325799b98f02c53e77c69 (diff)
downloadgunmake-aceefb74da02520ee25fd93183e902f4577929f5.tar.gz
(read_makefile, parse_file_seq): Fix typo __MS_DOS__ -> __MSDOS__.
Diffstat (limited to 'read.c')
-rw-r--r--read.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/read.c b/read.c
index e28c5e8..3903f78 100644
--- a/read.c
+++ b/read.c
@@ -723,7 +723,7 @@ read_makefile (filename, flags)
else
break;
}
-#ifdef __MS_DOS__
+#ifdef __MSDOS__
/* For MS-DOS, skip a "C:\...". */
if (p != 0 && p[1] == '\\' && isalpha (p[-1]))
p = 0;
@@ -1543,7 +1543,7 @@ parse_file_seq (stringp, stopchar, size, strip)
/* Yes, find end of next name. */
q = p;
p = find_char_unquote (q, stopchar, 1);
-#ifdef __MS_DOS__
+#ifdef __MSDOS__
/* For MS-DOS, skip a "C:\...". */
if (stopchar == ':' && p != 0 && p[1] == '\\' && isalpha (p[-1]))
p = 0;