Kaydet (Commit) 179f88df authored tarafından Herbert Dürr's avatar Herbert Dürr

#i103131# in doubt treat unicode variation selectors as invisible

üst c4ce6e92
......@@ -403,6 +403,11 @@ inline bool IsControlChar( sal_UCS4 cChar )
// byte order markers and invalid unicode
if( (cChar == 0xFEFF) || (cChar == 0xFFFE) || (cChar == 0xFFFF) )
return true;
// variation selectors
if( (0xFE00 <= cChar) && (cChar <= 0xFE0F) )
return true;
if( (0xE0100 <= cChar) && (cChar <= 0xE01EF) )
return true;
return false;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment