diff -Naru evolution-3.24.6.orig/evolution-3.24.6/src/e-util/e-spell-dictionary.c evolution-3.24.6/evolution-3.24.6/src/e-util/e-spell-dictionary.c diff -Naru evolution-3.24.6.orig/src/e-util/e-spell-dictionary.c evolution-3.24.6/src/e-util/e-spell-dictionary.c --- evolution-3.24.6.orig/src/e-util/e-spell-dictionary.c 2017-10-20 15:40:51.170412477 +0200 +++ evolution-3.24.6/src/e-util/e-spell-dictionary.c 2017-10-20 15:42:10.580413594 +0200 @@ -671,7 +671,7 @@ spell_checker, e_spell_dictionary_get_code (dictionary)); g_return_if_fail (enchant_dict != NULL); - enchant_dict_add_to_personal (enchant_dict, word, length); + enchant_dict_add (enchant_dict, word, length); g_object_unref (spell_checker); } @@ -751,7 +751,7 @@ suggestions = enchant_dict_suggest (enchant_dict, word, length, &count); for (ii = 0; ii < count; ii++) list = g_list_prepend (list, g_strdup (suggestions[ii])); - enchant_dict_free_suggestions (enchant_dict, suggestions); + enchant_dict_free_string_list (enchant_dict, suggestions); g_object_unref (spell_checker);