From 3ead5737c3134f5d177ac4527a9552c4110409bc Mon Sep 17 00:00:00 2001 From: Markus Scherer Date: Thu, 30 Oct 2003 03:23:11 +0000 Subject: [PATCH] ICU-2404 disable delta/extension-only tables until fully implemented X-SVN-Rev: 13532 --- icu4c/source/tools/makeconv/makeconv.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/icu4c/source/tools/makeconv/makeconv.c b/icu4c/source/tools/makeconv/makeconv.c index 43c9905478..1ca941323e 100644 --- a/icu4c/source/tools/makeconv/makeconv.c +++ b/icu4c/source/tools/makeconv/makeconv.c @@ -695,6 +695,10 @@ readFile(ConvData *data, const char* converterName, /* read only the extension table */ dataIsBase=FALSE; readTable(data, convFile, FALSE, NULL, pErrorCode); + + /* ### TODO enable extension-only tables, Jitterbug 3346 */ + fprintf(stderr, "error: delta/extension-only conversion tables are not yet supported\n"); + *pErrorCode=U_INVALID_TABLE_FORMAT; } T_FileStream_close(convFile);