diff options
author | Roland McGrath <roland@redhat.com> | 1994-02-01 00:07:17 +0000 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 1994-02-01 00:07:17 +0000 |
commit | bb55335906ca6deaaab7b3818522a695b495084b (patch) | |
tree | 4ca2fe9143902d259bb027a04bb31363e41ee005 | |
parent | b5665419baa2ce98f7456c59a0850653922b27e9 (diff) | |
download | gunmake-bb55335906ca6deaaab7b3818522a695b495084b.tar.gz |
Formerly read.c.~73~
-rw-r--r-- | read.c | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -1,4 +1,4 @@ -/* Copyright (C) 1988, 1989, 1990, 1991, 1992, 1993 +/* Copyright (C) 1988, 1989, 1990, 1991, 1992, 1993, 1994 Free Software Foundation, Inc. This file is part of GNU Make. @@ -360,7 +360,7 @@ read_makefile (filename, flags) remove_comments (collapsed); p = collapsed; - while (isspace (*p)) + while (*p == ' ') ++p; /* We cannot consider a line containing just a tab to be empty because it might constitute an empty command for a target. */ @@ -430,7 +430,6 @@ read_makefile (filename, flags) continue; } - if (ignoring) /* Ignore the line. We continue here so conditionals can appear in the middle of a rule. */ |