Commit 16796b12 authored by Qball Cow's avatar Qball Cow Committed by Max Kellermann

Fix tag not being set when casefolding the locate_item_list

parent 2bfe6f64
...@@ -122,9 +122,11 @@ locate_item_list_casefold(const struct locate_item_list *list) ...@@ -122,9 +122,11 @@ locate_item_list_casefold(const struct locate_item_list *list)
{ {
struct locate_item_list *new_list = locate_item_list_new(list->length); struct locate_item_list *new_list = locate_item_list_new(list->length);
for (unsigned i = 0; i < list->length; i++) for (unsigned i = 0; i < list->length; i++){
new_list->items[i].needle = new_list->items[i].needle =
g_utf8_casefold(list->items[i].needle, -1); g_utf8_casefold(list->items[i].needle, -1);
new_list->items[i].tag = list->items[i].tag;
}
return new_list; return new_list;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment