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:18:32 +00:00 committed by Noah Levitt
parent da4f56d4c1
commit bc76e98174
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-23 Noah Levitt <nlevitt@columbia.edu>
* glib/guniprop.c: Remove stale comment.

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-23 Noah Levitt <nlevitt@columbia.edu>
* glib/guniprop.c: Remove stale comment.

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-23 Noah Levitt <nlevitt@columbia.edu>
* glib/guniprop.c: Remove stale comment.

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-23 Noah Levitt <nlevitt@columbia.edu>
* glib/guniprop.c: Remove stale comment.

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-23 Noah Levitt <nlevitt@columbia.edu>
* glib/guniprop.c: Remove stale comment.

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-23 Noah Levitt <nlevitt@columbia.edu>
* glib/guniprop.c: Remove stale comment.

View 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] = {