From 63438d243b3aba01d0c8438987a2713f0252468c Mon Sep 17 00:00:00 2001 From: dchandler Date: Sat, 17 Apr 2004 15:49:40 +0000 Subject: [PATCH] getACIP was getting EWTS, not ACIP. --- source/org/thdl/tib/text/TibetanDocument.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/org/thdl/tib/text/TibetanDocument.java b/source/org/thdl/tib/text/TibetanDocument.java index 52ce911..6b8eda8 100644 --- a/source/org/thdl/tib/text/TibetanDocument.java +++ b/source/org/thdl/tib/text/TibetanDocument.java @@ -379,7 +379,7 @@ public class TibetanDocument extends DefaultStyledDocument { * these glyphs, then noSuchACIP[0] will be set to true * @return the string of ACIP corresponding to this document */ public String getACIP(int begin, int end, boolean noSuchACIP[]) { - return getTranslit(true, begin, end, noSuchACIP); + return getTranslit(false, begin, end, noSuchACIP); } private String getTranslit(boolean EWTSNotACIP, int begin, int end, boolean noSuch[]) {