Fixes lib/feature.t and lib/warnings.t tests that have been failing on Win32 since commit 26b6dc3.
n = s;
while (isDIGIT(*s))
s++;
- if (!SPACE_OR_TAB(*s) && *s != '\n' && *s != '\0')
+ if (!SPACE_OR_TAB(*s) && *s != '\r' && *s != '\n' && *s != '\0')
return;
while (SPACE_OR_TAB(*s))
s++;