Fix cut-and-pasto: g_unichar_break_type should return
authorNoah Levitt <nlevitt@columbia.edu>
Tue, 20 May 2003 03:38:48 +0000 (03:38 +0000)
committerNoah Levitt <nlevitt@src.gnome.org>
Tue, 20 May 2003 03:38:48 +0000 (03:38 +0000)
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.

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

index 9c15aff..f0561aa 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
 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).
 
 2003-05-19  Noah Levitt  <nlevitt@columbia.edu>
index 9c15aff..f0561aa 100644 (file)
@@ -1,5 +1,11 @@
 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).
 
 2003-05-19  Noah Levitt  <nlevitt@columbia.edu>
index 9c15aff..f0561aa 100644 (file)
@@ -1,5 +1,11 @@
 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).
 
 2003-05-19  Noah Levitt  <nlevitt@columbia.edu>
index 9c15aff..f0561aa 100644 (file)
@@ -1,5 +1,11 @@
 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).
 
 2003-05-19  Noah Levitt  <nlevitt@columbia.edu>
index 9c15aff..f0561aa 100644 (file)
@@ -1,5 +1,11 @@
 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).
 
 2003-05-19  Noah Levitt  <nlevitt@columbia.edu>
index 9c15aff..f0561aa 100644 (file)
@@ -1,5 +1,11 @@
 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).
 
 2003-05-19  Noah Levitt  <nlevitt@columbia.edu>
index 2875706..2147c52 100644 (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: