The Tibetan d.za was being converted into the Wylie dza incorrectly. This
is a rare case, but I want TMW->Wylie to be perfectly unambiguous.
This commit is contained in:
parent
1c29566aee
commit
f8c959bfb0
1 changed files with 1 additions and 0 deletions
|
@ -977,6 +977,7 @@ public static boolean isAmbiguousWylie(String x, String y) {
|
||||||
return (("g".equals(x) && y.startsWith("y"))
|
return (("g".equals(x) && y.startsWith("y"))
|
||||||
|| ("g".equals(x) && y.startsWith("w"))
|
|| ("g".equals(x) && y.startsWith("w"))
|
||||||
|| ("d".equals(x) && y.startsWith("w"))
|
|| ("d".equals(x) && y.startsWith("w"))
|
||||||
|
|| ("d".equals(x) && y.startsWith("z")) // d.za, d.zha
|
||||||
|| ("b".equals(x) && y.startsWith("l"))
|
|| ("b".equals(x) && y.startsWith("l"))
|
||||||
|| ("b".equals(x) && y.startsWith("r")));
|
|| ("b".equals(x) && y.startsWith("r")));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue