TMW->EWTS 998476 partial fix: "aM" is generated now correctly. Before

you got "M".
This commit is contained in:
dchandler 2005-02-07 04:00:42 +00:00
parent 8dcb623382
commit 9025fb42d6
3 changed files with 8 additions and 5 deletions

View file

@ -89,8 +89,12 @@ public class TGCPair implements THDLWylieConstants {
// Unlike ACIP, EWTS uses e for achen with e vowel, not ae.
if (null == vowelWylie)
return ACHEN;
else
return vowelWylie;
else {
if (TibetanMachineWeb.startsWithWylieVowelSequence(vowelWylie))
return vowelWylie;
else
return ACHEN + vowelWylie;
}
}
StringBuffer b = new StringBuffer();
if (consonantWylie != null) {