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:
dchandler 2003-07-18 00:30:27 +00:00
parent 1c29566aee
commit f8c959bfb0

View file

@ -977,6 +977,7 @@ public static boolean isAmbiguousWylie(String x, String y) {
return (("g".equals(x) && y.startsWith("y"))
|| ("g".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("r")));
}