GNOME Bugzilla – Bug 421512
file search folds only ASCII case
Last modified: 2007-06-18 21:11:57 UTC
The simple engine uses g_ascii_strdown instead g_utf8_strdown. This means searching for "stuff" will match files "Stuff" and "stuff" But searching for "école" will only match "école" and not "École". Searching for "école" should match "École" and any other equivalent unicode string in lowercase such as "école" and "École" with <U+0301 COMBINING ACUTE ACCENT> (but that's already in Bug 421486).
See attachment 85122 [details] [review] of Bug 421486 which also normalizes for search.
2007-06-18 Martin Wehner <martin.wehner@gmail.com> * libnautilus-private/nautilus-search-engine-simple.c: (search_thread_data_new), (search_visit_func): Normalize unicode search strings and use g_utf8_strdown to lowercase them. (#421486/#421512) Patch from Denis Jacquerye <moyogo@gmail.com>