mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-01 15:03:39 +02:00
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.
This commit is contained in:
@@ -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;
|
||||
|
Reference in New Issue
Block a user