Don't make error on ^<spaces>\n

Obtained from: NetBSD
This commit is contained in:
Andrey A. Chernov 1995-06-24 17:23:31 +00:00
parent 29eaad36e5
commit 33e5f8f7b0

View file

@ -2405,7 +2405,7 @@ Parse_File(name, stream)
goto nextLine;
}
}
if (*line == '#') {
if (*line == '#' || *line == '\0') {
/* If we're this far, the line must be a comment. */
goto nextLine;
}