Fix typo in UNICODE_VALID (related to #107427).
authorNoah Levitt <nlevitt@columbia.edu>
Fri, 23 May 2003 21:18:32 +0000 (21:18 +0000)
committerNoah Levitt <nlevitt@src.gnome.org>
Fri, 23 May 2003 21:18:32 +0000 (21:18 +0000)
2003-05-23  Noah Levitt  <nlevitt@columbia.edu>

* glib/gutf8.c: Fix typo in UNICODE_VALID (related to #107427).

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-12
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
glib/gutf8.c

index 5d05ae9..1c8c8e1 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2003-05-23  Noah Levitt  <nlevitt@columbia.edu>
 
+       * glib/gutf8.c: Fix typo in UNICODE_VALID (related to #107427).
+
+2003-05-23  Noah Levitt  <nlevitt@columbia.edu>
+
        * glib/guniprop.c: Remove stale comment.
 
 2003-05-22  Noah Levitt  <nlevitt@columbia.edu>
index 5d05ae9..1c8c8e1 100644 (file)
@@ -1,5 +1,9 @@
 2003-05-23  Noah Levitt  <nlevitt@columbia.edu>
 
+       * glib/gutf8.c: Fix typo in UNICODE_VALID (related to #107427).
+
+2003-05-23  Noah Levitt  <nlevitt@columbia.edu>
+
        * glib/guniprop.c: Remove stale comment.
 
 2003-05-22  Noah Levitt  <nlevitt@columbia.edu>
index 5d05ae9..1c8c8e1 100644 (file)
@@ -1,5 +1,9 @@
 2003-05-23  Noah Levitt  <nlevitt@columbia.edu>
 
+       * glib/gutf8.c: Fix typo in UNICODE_VALID (related to #107427).
+
+2003-05-23  Noah Levitt  <nlevitt@columbia.edu>
+
        * glib/guniprop.c: Remove stale comment.
 
 2003-05-22  Noah Levitt  <nlevitt@columbia.edu>
index 5d05ae9..1c8c8e1 100644 (file)
@@ -1,5 +1,9 @@
 2003-05-23  Noah Levitt  <nlevitt@columbia.edu>
 
+       * glib/gutf8.c: Fix typo in UNICODE_VALID (related to #107427).
+
+2003-05-23  Noah Levitt  <nlevitt@columbia.edu>
+
        * glib/guniprop.c: Remove stale comment.
 
 2003-05-22  Noah Levitt  <nlevitt@columbia.edu>
index 5d05ae9..1c8c8e1 100644 (file)
@@ -1,5 +1,9 @@
 2003-05-23  Noah Levitt  <nlevitt@columbia.edu>
 
+       * glib/gutf8.c: Fix typo in UNICODE_VALID (related to #107427).
+
+2003-05-23  Noah Levitt  <nlevitt@columbia.edu>
+
        * glib/guniprop.c: Remove stale comment.
 
 2003-05-22  Noah Levitt  <nlevitt@columbia.edu>
index 5d05ae9..1c8c8e1 100644 (file)
@@ -1,5 +1,9 @@
 2003-05-23  Noah Levitt  <nlevitt@columbia.edu>
 
+       * glib/gutf8.c: Fix typo in UNICODE_VALID (related to #107427).
+
+2003-05-23  Noah Levitt  <nlevitt@columbia.edu>
+
        * glib/guniprop.c: Remove stale comment.
 
 2003-05-22  Noah Levitt  <nlevitt@columbia.edu>
index 07b9a96..abf9dee 100644 (file)
@@ -99,7 +99,7 @@
     ((Char) < 0x110000 &&                     \
      (((Char) & 0xFFFFF800) != 0xD800) &&     \
      ((Char) < 0xFDD0 || (Char) > 0xFDEF) &&  \
-     ((Char) & 0xFFFF) != 0xFFFF)
+     ((Char) & 0xFFFE) != 0xFFFE)
    
      
 static const gchar utf8_skip_data[256] = {