Back out 2nd part of wrong iswascii() change in prev. commit.

This commit is contained in:
ache 2007-10-23 17:39:28 +00:00
parent 019b6cfbf0
commit 35c29e388c

View File

@ -61,7 +61,7 @@ int
iswascii(wc)
wint_t wc;
{
return (wc < 0x80);
return ((wc & ~0x7F) == 0);
}
#undef iswblank