Undoing my erroneous commit of buggy code.
This commit is contained in:
parent
abcf8f19b3
commit
aa580e0bea
1 changed files with 2 additions and 1 deletions
|
@ -1138,6 +1138,7 @@ public static boolean isTopVowel(DuffCode dc) {
|
||||||
|
|
||||||
@return true iff this is a tsheg or whitespace or the like */
|
@return true iff this is a tsheg or whitespace or the like */
|
||||||
public static boolean isTMWFontCharBreakable(char ch) {
|
public static boolean isTMWFontCharBreakable(char ch) {
|
||||||
|
if (false) {
|
||||||
//<?Input:Punctuation?>
|
//<?Input:Punctuation?>
|
||||||
int ord = (int)ch;
|
int ord = (int)ch;
|
||||||
|
|
||||||
|
@ -1157,7 +1158,7 @@ public static boolean isTopVowel(DuffCode dc) {
|
||||||
if (94 == ord) return true;
|
if (94 == ord) return true;
|
||||||
if (92 == ord) return true;
|
if (92 == ord) return true;
|
||||||
if (91 == 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. */
|
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. */
|
|| ' ' == 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 */
|
|| '\t' == ch /* FIXME: this is some sort of whitespace */
|
||||||
|
|
Loading…
Reference in a new issue