diff options
author | Noah Levitt <nlevitt@columbia.edu> | 2003-08-05 03:41:34 +0000 |
---|---|---|
committer | Noah Levitt <nlevitt@src.gnome.org> | 2003-08-05 03:41:34 +0000 |
commit | 479928953bc38e1dc7ee31cd560e1e49accb53b1 (patch) | |
tree | d309e09e55083d500ad46ab7a9e54f172696dc95 /tests/unicode-normalize.c | |
parent | 1cb5f0a11d53596b144698ffb94070a8feb2224c (diff) | |
download | glib-479928953bc38e1dc7ee31cd560e1e49accb53b1.tar.gz |
We do handle > BMP now, so test it.
2003-08-04 Noah Levitt <nlevitt@columbia.edu>
* tests/unicode-normalize.c: We do handle > BMP now, so test it.
Diffstat (limited to 'tests/unicode-normalize.c')
-rw-r--r-- | tests/unicode-normalize.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/unicode-normalize.c b/tests/unicode-normalize.c index 1d9bf3594..faa80a5a8 100644 --- a/tests/unicode-normalize.c +++ b/tests/unicode-normalize.c @@ -23,9 +23,8 @@ decode (const gchar *input) exit (1); } - /* FIXME: We don't handle the > BMP or Hangul syllables */ - if (ch > 0xffff || /* > BMP */ - (ch >= 0xac00 && ch <= 0xd7ff)) /* Hangul syllables */ + /* FIXME: We don't handle the Hangul syllables */ + if (ch >= 0xac00 && ch <= 0xd7ff) /* Hangul syllables */ { g_string_free (result, TRUE); return NULL; |