I've made Jskad adhere to the THDL Extended Wylie spec. Some

punctuation has changed {@, #, %, and $}.

Fixed some errors in tibwn.ini so that all the TM<->TMW mappings are
correct.
This commit is contained in:
dchandler 2003-05-26 13:11:51 +00:00
parent ec7fec695f
commit a144b125ca
3 changed files with 1025 additions and 1017 deletions

Binary file not shown.

View file

@ -383,8 +383,16 @@ public class TibetanMachineWeb implements THDLWylieConstants {
break;
case 3: //TibetanMachineWeb code
duffCodes[k-1] = new DuffCode(val,true);
TMtoTMW[duffCodes[TM].fontNum-1][duffCodes[TM].charNum-32] = duffCodes[TMW];
duffCodes[k-1/* TMW */] = new DuffCode(val,true);
// TibetanMachineWeb7.91, for
// example, has no TM(win32)
// equivalent (though it has a
// TM(dos) equivalent), so we must
// test for null here:
if (null != duffCodes[TM]) {
TMtoTMW[duffCodes[TM].fontNum-1][duffCodes[TM].charNum-32]
= duffCodes[TMW];
}
break;
case 4:
case 5:

File diff suppressed because it is too large Load diff