Fix loading enchant on Unix

This commit is contained in:
TingPing 2013-10-01 07:55:37 -04:00
parent ba74e70ec1
commit d643056ca0
1 changed files with 2 additions and 1 deletions

View File

@ -159,8 +159,9 @@ initialize_enchant ()
enchant = g_module_open("libenchant.so.1", 0);
if (enchant == NULL)
return;
#endif
#else
return;
#endif
}
have_enchant = TRUE;