Ignore T & U when determining the joining scripts
This commit is contained in:
parent
420a74f772
commit
a495a54236
|
@ -54,6 +54,8 @@ def read_joining_uu (f):
|
||||||
fields = [x.strip () for x in line.split (';')]
|
fields = [x.strip () for x in line.split (';')]
|
||||||
if len (fields) == 1:
|
if len (fields) == 1:
|
||||||
continue
|
continue
|
||||||
|
if fields[2] in {'T', 'U'}:
|
||||||
|
continue
|
||||||
|
|
||||||
values.add (int (fields[0], 16))
|
values.add (int (fields[0], 16))
|
||||||
|
|
||||||
|
|
|
@ -25,7 +25,6 @@ has_arabic_joining (hb_script_t script)
|
||||||
case HB_SCRIPT_ARABIC:
|
case HB_SCRIPT_ARABIC:
|
||||||
case HB_SCRIPT_CHORASMIAN:
|
case HB_SCRIPT_CHORASMIAN:
|
||||||
case HB_SCRIPT_HANIFI_ROHINGYA:
|
case HB_SCRIPT_HANIFI_ROHINGYA:
|
||||||
case HB_SCRIPT_KAITHI:
|
|
||||||
case HB_SCRIPT_MANDAIC:
|
case HB_SCRIPT_MANDAIC:
|
||||||
case HB_SCRIPT_MANICHAEAN:
|
case HB_SCRIPT_MANICHAEAN:
|
||||||
case HB_SCRIPT_MONGOLIAN:
|
case HB_SCRIPT_MONGOLIAN:
|
||||||
|
|
Loading…
Reference in New Issue