From 7fe29ebfc33cffda081d6c9fcf3c50b727fecadc Mon Sep 17 00:00:00 2001 From: "Dirk-Jan C. Binnema" Date: Tue, 2 Nov 2010 00:05:49 +0200 Subject: [PATCH] * cosmetic --- src/mu-query.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/mu-query.cc b/src/mu-query.cc index f1281527..163f4d0b 100644 --- a/src/mu-query.cc +++ b/src/mu-query.cc @@ -243,8 +243,8 @@ mu_query_preprocess (const char *query) g_return_val_if_fail (query, NULL); /* translate the the searchexpr to all lowercase; this - * fill fixes some of the false-negatives. A full fix - * probably require some custom query parser. + * will fixes some of the false-negatives. A full fix + * probably requires some custom query parser. */ my_query = g_utf8_strdown (query, -1); @@ -252,7 +252,7 @@ mu_query_preprocess (const char *query) if (*cur == ':') /* we found a ':' */ /* if there's a registered xapian prefix before the * ':', don't touch it. Otherwise replace ':' with - * a space' + * a space'... ugly... */ if (!is_xapian_prefix (my_query, cur)) *cur = ' ';