Fix typo in UNICODE_VALID (related to #107427).

2003-05-23  Noah Levitt  <nlevitt@columbia.edu>

	* glib/gutf8.c: Fix typo in UNICODE_VALID (related to #107427).
This commit is contained in:
Noah Levitt
2003-05-23 21:22:18 +00:00
committed by Noah Levitt
parent ddfac0d868
commit 561a247982
7 changed files with 25 additions and 1 deletions

View File

@@ -1,3 +1,7 @@
2003-05-23 Noah Levitt <nlevitt@columbia.edu>
* glib/gutf8.c: Fix typo in UNICODE_VALID (related to #107427).
2003-05-22 Noah Levitt <nlevitt@columbia.edu> 2003-05-22 Noah Levitt <nlevitt@columbia.edu>
* glib/guniprop.c: Update g_unichar_iswide to Unicode 4.0 (#113404). * glib/guniprop.c: Update g_unichar_iswide to Unicode 4.0 (#113404).

View File

@@ -1,3 +1,7 @@
2003-05-23 Noah Levitt <nlevitt@columbia.edu>
* glib/gutf8.c: Fix typo in UNICODE_VALID (related to #107427).
2003-05-22 Noah Levitt <nlevitt@columbia.edu> 2003-05-22 Noah Levitt <nlevitt@columbia.edu>
* glib/guniprop.c: Update g_unichar_iswide to Unicode 4.0 (#113404). * glib/guniprop.c: Update g_unichar_iswide to Unicode 4.0 (#113404).

View File

@@ -1,3 +1,7 @@
2003-05-23 Noah Levitt <nlevitt@columbia.edu>
* glib/gutf8.c: Fix typo in UNICODE_VALID (related to #107427).
2003-05-22 Noah Levitt <nlevitt@columbia.edu> 2003-05-22 Noah Levitt <nlevitt@columbia.edu>
* glib/guniprop.c: Update g_unichar_iswide to Unicode 4.0 (#113404). * glib/guniprop.c: Update g_unichar_iswide to Unicode 4.0 (#113404).

View File

@@ -1,3 +1,7 @@
2003-05-23 Noah Levitt <nlevitt@columbia.edu>
* glib/gutf8.c: Fix typo in UNICODE_VALID (related to #107427).
2003-05-22 Noah Levitt <nlevitt@columbia.edu> 2003-05-22 Noah Levitt <nlevitt@columbia.edu>
* glib/guniprop.c: Update g_unichar_iswide to Unicode 4.0 (#113404). * glib/guniprop.c: Update g_unichar_iswide to Unicode 4.0 (#113404).

View File

@@ -1,3 +1,7 @@
2003-05-23 Noah Levitt <nlevitt@columbia.edu>
* glib/gutf8.c: Fix typo in UNICODE_VALID (related to #107427).
2003-05-22 Noah Levitt <nlevitt@columbia.edu> 2003-05-22 Noah Levitt <nlevitt@columbia.edu>
* glib/guniprop.c: Update g_unichar_iswide to Unicode 4.0 (#113404). * glib/guniprop.c: Update g_unichar_iswide to Unicode 4.0 (#113404).

View File

@@ -1,3 +1,7 @@
2003-05-23 Noah Levitt <nlevitt@columbia.edu>
* glib/gutf8.c: Fix typo in UNICODE_VALID (related to #107427).
2003-05-22 Noah Levitt <nlevitt@columbia.edu> 2003-05-22 Noah Levitt <nlevitt@columbia.edu>
* glib/guniprop.c: Update g_unichar_iswide to Unicode 4.0 (#113404). * glib/guniprop.c: Update g_unichar_iswide to Unicode 4.0 (#113404).

View File

@@ -99,7 +99,7 @@
((Char) < 0x110000 && \ ((Char) < 0x110000 && \
(((Char) & 0xFFFFF800) != 0xD800) && \ (((Char) & 0xFFFFF800) != 0xD800) && \
((Char) < 0xFDD0 || (Char) > 0xFDEF) && \ ((Char) < 0xFDD0 || (Char) > 0xFDEF) && \
((Char) & 0xFFFF) != 0xFFFF) ((Char) & 0xFFFE) != 0xFFFE)
static const gchar utf8_skip_data[256] = { static const gchar utf8_skip_data[256] = {