summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReuben Thomas <rrt@sc3d.org>2017-02-04 19:39:41 +0000
committerReuben Thomas <rrt@sc3d.org>2017-02-09 00:28:25 +0000
commit9ef35c805b9c931ddfc296c46c3858f54956284a (patch)
tree36b4ad711574a380a848a9dc43f16b0a68f35381
parentdc5af9c5a1be674e48a63ee20c04385e4cc49f19 (diff)
downloadenchant-9ef35c805b9c931ddfc296c46c3858f54956284a.tar.gz
Require hspell >= 0.8
-rw-r--r--src/hspell/hspell_provider.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/hspell/hspell_provider.c b/src/hspell/hspell_provider.c
index a2aa327..0844548 100644
--- a/src/hspell/hspell_provider.c
+++ b/src/hspell/hspell_provider.c
@@ -212,11 +212,7 @@ hspell_provider_dispose_dict (EnchantProvider * me, EnchantDict * dict)
struct dict_radix *hspell_dict;
hspell_dict = (struct dict_radix *)dict->user_data;
-
- /* deleting the dict is not posible on hspell ver. < v.0.8 */
-#if (HSPELL_VERSION_MAJOR > 0) || (HSPELL_VERSION_MINOR >= 8)
hspell_uninit (hspell_dict);
-#endif
g_free (dict);
}