Skip to content

Commit

Permalink
Remove workaround for the supplemental arrow after
Browse files Browse the repository at this point in the history
  • Loading branch information
fred-wang committed Jan 27, 2022
1 parent f8a301f commit 6b66e9e
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions tables/operator-dictionary.py
Original file line number Diff line number Diff line change
Expand Up @@ -519,10 +519,6 @@ def convertToSurrogatePairs():
# Remove non-BMP characters.
for name in knownTables:
for entry in knownTables[name]["singleChar"]:
# FIXME(mathml-core/104): Decide what to do with all these supplemental
# arrows-C.
if entry >=0x1F800 and entry < 0x1F900:
continue
assert entry < 0x10000 or isKnownNonBMP(entry)
knownTables[name]["singleChar"] = [ entry for entry in knownTables[name]["singleChar"] if entry < 0x10000 ]

Expand Down

0 comments on commit 6b66e9e

Please sign in to comment.