diff options
author | ache <ache@FreeBSD.org> | 2007-10-23 17:39:28 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 2007-10-23 17:39:28 +0000 |
commit | 35c29e388ce5fe5459df3abc896edccccaa46145 (patch) | |
tree | 374d762fcec68df5647f5ccafc9d248dceccc038 /lib | |
parent | 019b6cfbf006480893a61f5bedd478bcdcce201c (diff) | |
download | FreeBSD-src-35c29e388ce5fe5459df3abc896edccccaa46145.zip FreeBSD-src-35c29e388ce5fe5459df3abc896edccccaa46145.tar.gz |
Back out 2nd part of wrong iswascii() change in prev. commit.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/locale/iswctype.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/locale/iswctype.c b/lib/libc/locale/iswctype.c index c2e0f53..eaa1bf3 100644 --- a/lib/libc/locale/iswctype.c +++ b/lib/libc/locale/iswctype.c @@ -61,7 +61,7 @@ int iswascii(wc) wint_t wc; { - return (wc < 0x80); + return ((wc & ~0x7F) == 0); } #undef iswblank |