Kaydet (Commit) 26ec39fc authored tarafından Khaled Hosny's avatar Khaled Hosny

Revert "#i103131# in doubt treat unicode variation selectors as invisible(cherry…

Revert "#i103131# in doubt treat unicode variation selectors as invisible(cherry picked from commit 179f88df)"

This reverts commit 6840ba61.

We don't want this since we can now support variation selectors with
HarfBuzz.
üst 09d486b8
......@@ -337,11 +337,6 @@ 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