date-parsing: don't lowercase date range strings
Allow them to be received unmolested in mu_date_parse_hdwmy
This commit is contained in:
@ -586,7 +586,9 @@ process_str (const char *str, gboolean xapian_esc, gboolean query_esc)
|
||||
if (g_unichar_ismark(uc))
|
||||
continue;
|
||||
|
||||
uc = g_unichar_tolower (uc);
|
||||
if (!is_range_field)
|
||||
uc = g_unichar_tolower (uc);
|
||||
|
||||
g_string_append_unichar (gstr, uc);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user