mirror of
https://github.com/profanity-im/profanity.git
synced 2024-11-03 19:37:16 -05:00
refactred autocomplete_remove
This commit is contained in:
parent
92763d2e68
commit
982f1174a8
@ -101,32 +101,23 @@ autocomplete_add(Autocomplete ac, const char *item)
|
||||
gboolean
|
||||
autocomplete_remove(Autocomplete ac, const char * const item)
|
||||
{
|
||||
// reset last found if it points to the item to be removed
|
||||
if (ac->last_found != NULL)
|
||||
if (g_strcmp0(ac->last_found->data, item) == 0)
|
||||
ac->last_found = NULL;
|
||||
GSList *curr = g_slist_find_custom(ac->items, item, (GCompareFunc)strcmp);
|
||||
|
||||
if (!ac->items) {
|
||||
if (!curr) {
|
||||
return FALSE;
|
||||
} else {
|
||||
GSList *curr = ac->items;
|
||||
}
|
||||
|
||||
while(curr) {
|
||||
if (g_strcmp0(curr->data, item) == 0) {
|
||||
void *current_item = curr->data;
|
||||
ac->items = g_slist_remove(ac->items, curr->data);
|
||||
free(current_item);
|
||||
// reset last found if it points to the item to be removed
|
||||
if (ac->last_found == curr) {
|
||||
ac->last_found = NULL;
|
||||
}
|
||||
|
||||
free(curr->data);
|
||||
ac->items = g_slist_delete_link(ac->items, curr);
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
curr = g_slist_next(curr);
|
||||
}
|
||||
|
||||
return FALSE;
|
||||
}
|
||||
}
|
||||
|
||||
GSList *
|
||||
autocomplete_get_list(Autocomplete ac)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user