? nbsp.patch Index: iswblank.c =================================================================== RCS file: /cvs/src/src/newlib/libc/ctype/iswblank.c,v retrieving revision 1.7 diff -u -r1.7 iswblank.c --- iswblank.c 14 May 2009 20:16:21 -0000 1.7 +++ iswblank.c 22 Aug 2009 09:27:41 -0000 @@ -67,7 +67,8 @@ { #ifdef _MB_CAPABLE c = _jp2uc (c); - return (c == 0x0009 || c == 0x0020 || c == 0x1680 || + return (c == 0x0009 || c == 0x0020 || + c == 0x00A0 || c == 0x1680 || (c >= 0x2000 && c <= 0x2006) || (c >= 0x2008 && c <= 0x200b) || c == 0x205f || c == 0x3000); Index: iswspace.c =================================================================== RCS file: /cvs/src/src/newlib/libc/ctype/iswspace.c,v retrieving revision 1.7 diff -u -r1.7 iswspace.c --- iswspace.c 14 May 2009 20:16:21 -0000 1.7 +++ iswspace.c 22 Aug 2009 09:27:41 -0000 @@ -67,7 +67,8 @@ { #ifdef _MB_CAPABLE c = _jp2uc (c); - return ((c >= 0x0009 && c <= 0x000d) || c == 0x0020 || c == 0x1680 || + return ((c >= 0x0009 && c <= 0x000d) || c == 0x0020 || + c == 0x00A0 || c == 0x1680 || (c >= 0x2000 && c <= 0x2006) || (c >= 0x2008 && c <= 0x200b) || c == 0x2028 || c == 0x2029 ||