projects
/
platform
/
upstream
/
make.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f38d98e
)
(read_makefile, parse_file_seq): Fix typo __MS_DOS__ -> __MSDOS__.
author
Roland McGrath
<roland@redhat.com>
Fri, 10 Mar 1995 19:07:26 +0000
(19:07 +0000)
committer
Roland McGrath
<roland@redhat.com>
Fri, 10 Mar 1995 19:07:26 +0000
(19:07 +0000)
read.c
patch
|
blob
|
history
diff --git
a/read.c
b/read.c
index e28c5e89848f85bc76beac154add39e423a63fe2..3903f781dfc184380dcf3afb807857bfb0e9c576 100644
(file)
--- 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;