Browse Source

iswspace: fix handling of 0

rs-1.0
rofl0r 13 years ago
parent
commit
d8e8f1464c
  1. 3
      src/ctype/iswspace.c

3
src/ctype/iswspace.c

@ -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);
}

Loading…
Cancel
Save