From aa580e0bea126d628e9e0be8f4819978ad4619e5 Mon Sep 17 00:00:00 2001 From: dchandler Date: Sat, 2 Nov 2002 03:46:44 +0000 Subject: [PATCH] Undoing my erroneous commit of buggy code. --- source/org/thdl/tib/text/TibetanMachineWeb.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/org/thdl/tib/text/TibetanMachineWeb.java b/source/org/thdl/tib/text/TibetanMachineWeb.java index 10ba034..f1dd271 100644 --- a/source/org/thdl/tib/text/TibetanMachineWeb.java +++ b/source/org/thdl/tib/text/TibetanMachineWeb.java @@ -1138,6 +1138,7 @@ public static boolean isTopVowel(DuffCode dc) { @return true iff this is a tsheg or whitespace or the like */ public static boolean isTMWFontCharBreakable(char ch) { + if (false) { // int ord = (int)ch; @@ -1157,7 +1158,7 @@ public static boolean isTopVowel(DuffCode dc) { if (94 == ord) return true; if (92 == ord) return true; if (91 == ord) return true; - + } // DLC FIXME return ('-' == ch /* FIXME: this is the tsheg (i.e., the Wylie is ' '), but we have no constant for it. */ || ' ' == ch /* FIXME: this is space (i.e., the Wylie is '_'), but we have no constant for it. */ || '\t' == ch /* FIXME: this is some sort of whitespace */