(define_makeflags): When no flags, set WORDS to zero.

This commit is contained in:
Roland McGrath 1994-11-07 18:57:56 +00:00
parent 1a886b6359
commit e25e2fb7f5

5
main.c
View file

@ -1782,7 +1782,10 @@ define_makeflags (all, makefile)
}
}
else if (p == &flagstring[1])
--p;
{
words = 0;
--p;
}
else if (p[-1] == '-')
/* Kill the final space and dash. */
p -= 2;