From ab7542e912c54907690d34779d743eaef874b7e8 Mon Sep 17 00:00:00 2001 From: peter1138 Date: Wed, 19 Mar 2008 20:46:56 +0000 Subject: [PATCH] (svn r12385) -Fix [FS#ln]: Non-breaking spaces should not be broken. --- src/string_func.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/string_func.h b/src/string_func.h index 3a4303293e..0733931f30 100644 --- a/src/string_func.h +++ b/src/string_func.h @@ -142,7 +142,8 @@ static inline bool IsPrintable(WChar c) } /** - * 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 @@ static inline bool IsWhitespace(WChar c) { return c == 0x0020 /* SPACE */ || - c == 0x00A0 /* NO-BREAK SPACE */ || c == 0x3000 /* IDEOGRAPHIC SPACE */ ; }