From af3de60824423e03974f279f7fd1b3ccba798cb5 Mon Sep 17 00:00:00 2001 From: Vladimir Weinstein Date: Mon, 23 Apr 2001 03:49:34 +0000 Subject: [PATCH] ICU-96 genrb collation generation update X-SVN-Rev: 4528 --- icu4c/source/tools/genrb/parse.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/icu4c/source/tools/genrb/parse.c b/icu4c/source/tools/genrb/parse.c index 6f82a95f1b..9caacf4a3a 100644 --- a/icu4c/source/tools/genrb/parse.c +++ b/icu4c/source/tools/genrb/parse.c @@ -703,7 +703,8 @@ parse(FileStream *f, const char *cp, const char *inputDir, UChar *rules = NULL; struct UString newTag; - coll = ucol_openRules(token.fChars, token.fLength, UCOL_DECOMP_CAN, 0, &intStatus); + coll = ucol_openRules(token.fChars, token.fLength, + UNORM_NONE, UCOL_DEFAULT_STRENGTH, &intStatus); if(U_SUCCESS(intStatus) && coll !=NULL) { binColData = ucol_cloneRuleData(coll, &len, &intStatus);