Comment-only checkin arising from bug 14871 and bug 211343, not part of the build.

This commit is contained in:
smontagu%netscape.com 2003-07-04 18:34:25 +00:00
Родитель 2004af63d2
Коммит c6c796519b
1 изменённых файлов: 8 добавлений и 0 удалений

Просмотреть файл

@ -37,6 +37,14 @@
#include "nsLWBrkCIID.h"
/* XXX The platform-specific #defines of IS_NSBSP_CHAR are unnecessary and
* inaccurate. We should be doing the whitespace conversion on the UTF-16
* buffer before the call to aUnicodeEncoder->Convert().
*
* XXX Should we be converting any other whitespace characters to spaces?
*
* See comments in bug 211343.
*/
#ifdef XP_MAC
#define IS_NBSP_CHAR(c) (((unsigned char)0xca)==(c))
#else