This commit is contained in:
ceriel 1987-02-06 10:27:57 +00:00
parent d3f3afa6e7
commit e60f0f3981

View file

@ -619,7 +619,12 @@ gethead()
argnum = 1;
for (;;) {
EM_lineno++;
if ((c = getbyte()) == EOF) return 0;
c = getbyte();
if (c == COMMENTSTARTER) {
do c = getbyte();
while (c != '\n' && c != EOF);
}
if (c == EOF) return 0;
if (c == '\n') continue;
if (isspace(c)) {
c = nospace();