# HG changeset patch # User peter1138 # Date 1205959616 0 # Node ID 1d6f1fd43e835ab494ebe5b36b3c41bb6cf061fc # Parent cb7cf95986d92fe3452bab15372302b7035296f7 (svn r12385) -Fix [FS#ln]: Non-breaking spaces should not be broken. diff -r cb7cf95986d9 -r 1d6f1fd43e83 src/string_func.h --- a/src/string_func.h Wed Mar 19 20:42:05 2008 +0000 +++ b/src/string_func.h Wed Mar 19 20:46:56 2008 +0000 @@ -142,7 +142,8 @@ } /** - * Check whether UNICODE character is whitespace or not + * Check whether UNICODE character is whitespace or not, i.e. whether + * this is a potential line-break character. * @param c UNICODE character to check * @return a boolean value whether 'c' is a whitespace character or not * @see http://www.fileformat.info/info/unicode/category/Zs/list.htm @@ -151,7 +152,6 @@ { return c == 0x0020 /* SPACE */ || - c == 0x00A0 /* NO-BREAK SPACE */ || c == 0x3000 /* IDEOGRAPHIC SPACE */ ; }