https://bugs.documentfoundation.org/show_bug.cgi?id=135451

Andreas Heinisch <andreas.heini...@yahoo.de> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |andreas.heini...@yahoo.de

--- Comment #4 from Andreas Heinisch <andreas.heini...@yahoo.de> ---
The word boundaries in LO are processed using u_isWhitespace that excludes the
no-break-spaces. 

The Unicode functions defined in [1] can be used:

u_isUWhiteSpace=UCHAR_WHITE_SPACE: Unicode White_Space property; most of
general categories "Z" (separators) + most whitespace ISO controls (including
no-break spaces, but excluding IS1..IS4)
u_isWhitespace: Java isWhitespace; Z + whitespace ISO controls but excluding
no-break spaces
u_isJavaSpaceChar: Java isSpaceChar; just Z (including no-break spaces)
u_isspace: Z + whitespace ISO controls (including no-break spaces)
u_isblank: "horizontal spaces" = TAB + Zs

[1] https://unicode-org.github.io/icu-docs/apidoc/dev/icu4c/uchar_8h.html

We could add simply the Narrow no-break space, U+202F, as a workaround

-- 
You are receiving this mail because:
You are the assignee for the bug.

Reply via email to