iswspace: fix handling of 0

This commit is contained in:
rofl0r 2013-11-11 05:44:47 +01:00
parent 35cf8b3e73
commit d8e8f1464c
1 changed files with 1 additions and 2 deletions

View File

@ -14,6 +14,5 @@ int iswspace(wint_t wc)
0x2006, 0x2008, 0x2009, 0x200a,
0x2028, 0x2029, 0x205f, 0x3000, 0
};
if (wcschr(spaces, wc)) return 1;
return 0;
return wc && wcschr(spaces, wc);
}