aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-text-index.c
diff options
context:
space:
mode:
Diffstat (limited to 'camel/camel-text-index.c')
-rw-r--r--camel/camel-text-index.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/camel/camel-text-index.c b/camel/camel-text-index.c
index 7ad069d90c..5b5a349c84 100644
--- a/camel/camel-text-index.c
+++ b/camel/camel-text-index.c
@@ -753,8 +753,8 @@ text_index_normalise(CamelIndex *idx, const char *in, void *data)
{
char *word;
- /* Sigh, this is really epensive */
- word = g_utf8_normalize(in, strlen(in), G_NORMALIZE_ALL);
+ /* Sigh, this is really expensive */
+ word = g_strdup(in); /*g_utf8_normalize(in, strlen(in), G_NORMALIZE_ALL);*/
g_utf8_strdown(word);
return word;