Changed function so elements are always inserted, even if they compare
Mon Feb 16 23:05:06 1998 Owen Taylor <owt1@cornell.edu> * glist.c (g_list_insert_sorted): Changed function so elements are always inserted, even if they compare equal with another.
This commit is contained in:
parent
afcc0ad3b2
commit
04c520bad9
@ -1,3 +1,9 @@
|
||||
Mon Feb 16 23:05:06 1998 Owen Taylor <owt1@cornell.edu>
|
||||
|
||||
* glist.c (g_list_insert_sorted): Changed function
|
||||
so elements are always inserted, even if they compare
|
||||
equal with another.
|
||||
|
||||
Thu Feb 12 22:48:11 1998 Owen Taylor <owt1@cornell.edu>
|
||||
|
||||
* gstring.c glib.h: removed deprecated g_string_equal
|
||||
|
@ -389,9 +389,6 @@ g_list_insert_sorted (GList *list,
|
||||
cmp = (*func) (data, tmp_list->data);
|
||||
}
|
||||
|
||||
if (cmp == 0)
|
||||
return list;
|
||||
|
||||
new_list = g_list_alloc();
|
||||
new_list->data = data;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user