From 86447ad060d6f4edf01f2a64b9598dfeeb6e6f7d Mon Sep 17 00:00:00 2001 From: "Steven G. Johnson" Date: Sun, 14 Dec 2014 09:01:14 -0500 Subject: [PATCH] rm note about obsolete grapheme rules from README, clean up test output --- README.md | 4 +--- graphemetest.c | 1 - 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/README.md b/README.md index 3771089..2bf3cd4 100644 --- a/README.md +++ b/README.md @@ -41,9 +41,7 @@ The C library is found in this directory after successful compilation and is named `libmojibake.a` (for the static library) and `libmojibake.so` (for the dynamic library). -The Unicode version being supported is 7.0.0. (Grapheme segmentation -is currently based on version 4.1.0 of Unicode Standard Annex #29, but -we hope to update this soon.) +The Unicode version being supported is 7.0.0. For Unicode normalizations, the following options are used: diff --git a/graphemetest.c b/graphemetest.c index 4ad2c12..094fa7f 100644 --- a/graphemetest.c +++ b/graphemetest.c @@ -60,7 +60,6 @@ int main(void) for (i = 0; i <= glen; ++i) if (g[i] == 0xff) g[i] = '/'; /* easier-to-read output (/ is not in test strings) */ - printf("line %zd\n", lineno); check(!strcmp((char*)g, (char*)src), "grapheme mismatch: \"%s\" instead of \"%s\"", (char*)g, (char*)src); }