A couple of changes to TMW->Unicode thanks to Than's reply to my

questions.
This commit is contained in:
dchandler 2003-07-09 01:44:15 +00:00
parent 9db233bdf8
commit d726bc0258
2 changed files with 20 additions and 19 deletions

View file

@ -556,7 +556,10 @@ public class TibetanMachineWeb implements THDLWylieConstants {
int x;
ThdlDebug.verify(((x = Integer.parseInt(subval, 16)) >= 0x0F00
&& x <= 0x0FFF)
|| x == 0x0020);
|| x == 0x5350
|| x == 0x534D
|| x == 0x0020
|| x == 0x2003);
unicodeBuffer.append((char)x);
} catch (NumberFormatException e) {
ThdlDebug.verify(false);