Fix cut-and-pasto: g_unichar_break_type should return

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

	* glib/gunibreak.c: Fix cut-and-pasto: g_unichar_break_type should
	return G_UNICODE_BREAK_UNKNOWN if the character is greater than
	G_UNICODE_LAST_CHAR.
This commit is contained in:
Noah Levitt 2003-05-20 03:38:48 +00:00 committed by Noah Levitt
parent 6c4580c9c7
commit 939c31884b
7 changed files with 37 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2003-05-19 Noah Levitt <nlevitt@columbia.edu>
* glib/gunibreak.c: Fix cut-and-pasto: g_unichar_break_type should
return G_UNICODE_BREAK_UNKNOWN if the character is greater than
G_UNICODE_LAST_CHAR.
2003-05-19 Noah Levitt <nlevitt@columbia.edu>
* glib/glist.c: Remove unused function g_list_sort2 (bug #113203).

View File

@ -1,3 +1,9 @@
2003-05-19 Noah Levitt <nlevitt@columbia.edu>
* glib/gunibreak.c: Fix cut-and-pasto: g_unichar_break_type should
return G_UNICODE_BREAK_UNKNOWN if the character is greater than
G_UNICODE_LAST_CHAR.
2003-05-19 Noah Levitt <nlevitt@columbia.edu>
* glib/glist.c: Remove unused function g_list_sort2 (bug #113203).

View File

@ -1,3 +1,9 @@
2003-05-19 Noah Levitt <nlevitt@columbia.edu>
* glib/gunibreak.c: Fix cut-and-pasto: g_unichar_break_type should
return G_UNICODE_BREAK_UNKNOWN if the character is greater than
G_UNICODE_LAST_CHAR.
2003-05-19 Noah Levitt <nlevitt@columbia.edu>
* glib/glist.c: Remove unused function g_list_sort2 (bug #113203).

View File

@ -1,3 +1,9 @@
2003-05-19 Noah Levitt <nlevitt@columbia.edu>
* glib/gunibreak.c: Fix cut-and-pasto: g_unichar_break_type should
return G_UNICODE_BREAK_UNKNOWN if the character is greater than
G_UNICODE_LAST_CHAR.
2003-05-19 Noah Levitt <nlevitt@columbia.edu>
* glib/glist.c: Remove unused function g_list_sort2 (bug #113203).

View File

@ -1,3 +1,9 @@
2003-05-19 Noah Levitt <nlevitt@columbia.edu>
* glib/gunibreak.c: Fix cut-and-pasto: g_unichar_break_type should
return G_UNICODE_BREAK_UNKNOWN if the character is greater than
G_UNICODE_LAST_CHAR.
2003-05-19 Noah Levitt <nlevitt@columbia.edu>
* glib/glist.c: Remove unused function g_list_sort2 (bug #113203).

View File

@ -1,3 +1,9 @@
2003-05-19 Noah Levitt <nlevitt@columbia.edu>
* glib/gunibreak.c: Fix cut-and-pasto: g_unichar_break_type should
return G_UNICODE_BREAK_UNKNOWN if the character is greater than
G_UNICODE_LAST_CHAR.
2003-05-19 Noah Levitt <nlevitt@columbia.edu>
* glib/glist.c: Remove unused function g_list_sort2 (bug #113203).

View File

@ -31,7 +31,7 @@
? (break_property_table[Page] - G_UNICODE_MAX_TABLE_INDEX) \
: (break_property_data[break_property_table[Page]][Char]))
#define PROP(Char) (((Char) > (G_UNICODE_LAST_CHAR)) ? G_UNICODE_UNASSIGNED : TPROP ((Char) >> 8, (Char) & 0xff))
#define PROP(Char) (((Char) > (G_UNICODE_LAST_CHAR)) ? G_UNICODE_BREAK_UNKNOWN : TPROP ((Char) >> 8, (Char) & 0xff))
/**
* g_unichar_break_type: