-
Notifications
You must be signed in to change notification settings - Fork 215
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Defang MacOS & iOS crashing text sequences
[Manish Goregaokar](https://manishearth.github.io/blog/2018/02/15/picking-apart-the-crashing-ios-string/) says > So, ultimately, the full set of cases that cause the crash are: > Any sequence <consonant1, virama, consonant2, ZWNJ, vowel> > in Devanagari, Bengali, and Telugu, where: ... We eliminate the ZWNJ which seems the minimally damaging thing to do to Telugu rendering per the article above: > a ZWNJ before a vowel doesn’t really do anything for most Indic scripts. This is needed as of February 2018, but hopefully not long after that.
- Loading branch information
1 parent
79c46d2
commit a7760d0
Showing
2 changed files
with
85 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 comment
on commit a7760d0
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for taking care of this!
@Manishearth, thanks for your writeup btw.