We do handle > BMP now, so test it.
authorNoah Levitt <nlevitt@columbia.edu>
Tue, 5 Aug 2003 03:41:34 +0000 (03:41 +0000)
committerNoah Levitt <nlevitt@src.gnome.org>
Tue, 5 Aug 2003 03:41:34 +0000 (03:41 +0000)
2003-08-04  Noah Levitt  <nlevitt@columbia.edu>

* tests/unicode-normalize.c: We do handle > BMP now, so test it.

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-12
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
tests/unicode-normalize.c

index 40b26a6..884c60d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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)
index 40b26a6..884c60d 100644 (file)
@@ -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)
index 40b26a6..884c60d 100644 (file)
@@ -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)
index 40b26a6..884c60d 100644 (file)
@@ -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)
index 40b26a6..884c60d 100644 (file)
@@ -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)
index 40b26a6..884c60d 100644 (file)
@@ -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)
index 1d9bf35..faa80a5 100644 (file)
@@ -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;