ACIP->Unicode now uses two characters for consonants instead of one. This matches the dislike for characters like U+0F77 etc.

ACIP->Tibetan was not giving an error for BCWA because it parsed like BCVA.  Fixed.
This commit is contained in:
dchandler 2003-12-15 07:32:14 +00:00
parent e9f7b2dfed
commit e7a9e7968f
4 changed files with 102 additions and 54 deletions

View file

@ -184,7 +184,11 @@ class TPair {
/** Returns the EWTS Wylie that corresponds to this pair if
* justLeft is false, or the EWTS Wylie that corresponds to just
* {@link #getLeft()} if justLeft is true. */
* {@link #getLeft()} if justLeft is true.
*
* <p>Returns "W" for ACIP "W", "r" for ACIP "R", y for ACIP "Y",
* even though sometimes the EWTS for those is "w", "R", or "Y".
* Handle that in the caller. */
String getWylie(boolean justLeft) {
String leftWylie = null;
if (getLeft() != null) {