mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-02-07 19:35:50 +01: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:
parent
1cb5f0a11d
commit
479928953b
@ -1,3 +1,7 @@
|
||||
2003-08-04 Noah Levitt <nlevitt@columbia.edu>
|
||||
|
||||
* tests/unicode-normalize.c: We do handle > BMP now, so test it.
|
||||
|
||||
2003-07-31 Noah Levitt <nlevitt@columbia.edu>
|
||||
|
||||
* tests/file-test.c: s/g_read_link/g_file_read_link/ (#118727)
|
||||
|
@ -1,3 +1,7 @@
|
||||
2003-08-04 Noah Levitt <nlevitt@columbia.edu>
|
||||
|
||||
* tests/unicode-normalize.c: We do handle > BMP now, so test it.
|
||||
|
||||
2003-07-31 Noah Levitt <nlevitt@columbia.edu>
|
||||
|
||||
* tests/file-test.c: s/g_read_link/g_file_read_link/ (#118727)
|
||||
|
@ -1,3 +1,7 @@
|
||||
2003-08-04 Noah Levitt <nlevitt@columbia.edu>
|
||||
|
||||
* tests/unicode-normalize.c: We do handle > BMP now, so test it.
|
||||
|
||||
2003-07-31 Noah Levitt <nlevitt@columbia.edu>
|
||||
|
||||
* tests/file-test.c: s/g_read_link/g_file_read_link/ (#118727)
|
||||
|
@ -1,3 +1,7 @@
|
||||
2003-08-04 Noah Levitt <nlevitt@columbia.edu>
|
||||
|
||||
* tests/unicode-normalize.c: We do handle > BMP now, so test it.
|
||||
|
||||
2003-07-31 Noah Levitt <nlevitt@columbia.edu>
|
||||
|
||||
* tests/file-test.c: s/g_read_link/g_file_read_link/ (#118727)
|
||||
|
@ -1,3 +1,7 @@
|
||||
2003-08-04 Noah Levitt <nlevitt@columbia.edu>
|
||||
|
||||
* tests/unicode-normalize.c: We do handle > BMP now, so test it.
|
||||
|
||||
2003-07-31 Noah Levitt <nlevitt@columbia.edu>
|
||||
|
||||
* tests/file-test.c: s/g_read_link/g_file_read_link/ (#118727)
|
||||
|
@ -1,3 +1,7 @@
|
||||
2003-08-04 Noah Levitt <nlevitt@columbia.edu>
|
||||
|
||||
* tests/unicode-normalize.c: We do handle > BMP now, so test it.
|
||||
|
||||
2003-07-31 Noah Levitt <nlevitt@columbia.edu>
|
||||
|
||||
* tests/file-test.c: s/g_read_link/g_file_read_link/ (#118727)
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user