Fix off-by-one error in processing of #ifdef lines

The convention in this program is to parse the line immediately starting
after the token (e.g. #defineA and #ifdefA define respectively look-up "A"),
and this commit restores this behavior instead of skipping an assumed
white-space character following #ifdef.

Reported by:	kevans
MFC after:	3 days
This commit is contained in:
Stefan Eßer 2020-10-28 13:30:24 +00:00
parent 2939897921
commit e0e29f9425
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=367104

View File

@ -213,7 +213,7 @@ token(char *line, FILE *out, bool *skip)
}
if (strncmp(line, "ifdef", 5) == 0) {
walk = line + 6;
walk = line + 5;
trimlr(&walk);
if (*walk == '\0') {