summaryrefslogtreecommitdiffstats
path: root/www/epiphany/files/patch-lib_ephy-spell-check.c
diff options
context:
space:
mode:
authorkwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059>2010-05-12 23:49:19 +0800
committerkwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059>2010-05-12 23:49:19 +0800
commit926382e09698007dc3472481164045c6b0b9754a (patch)
treed0ae60e8f02a2f6b230176c1f2dd549262359efb /www/epiphany/files/patch-lib_ephy-spell-check.c
parent42048341091e3810049dedfc96d4b312013ab048 (diff)
downloadmarcuscom-ports-926382e09698007dc3472481164045c6b0b9754a.tar
marcuscom-ports-926382e09698007dc3472481164045c6b0b9754a.tar.gz
marcuscom-ports-926382e09698007dc3472481164045c6b0b9754a.tar.bz2
marcuscom-ports-926382e09698007dc3472481164045c6b0b9754a.tar.lz
marcuscom-ports-926382e09698007dc3472481164045c6b0b9754a.tar.xz
marcuscom-ports-926382e09698007dc3472481164045c6b0b9754a.tar.zst
marcuscom-ports-926382e09698007dc3472481164045c6b0b9754a.zip
Post 2.30.1 commit clean up.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@14135 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'www/epiphany/files/patch-lib_ephy-spell-check.c')
-rw-r--r--www/epiphany/files/patch-lib_ephy-spell-check.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/www/epiphany/files/patch-lib_ephy-spell-check.c b/www/epiphany/files/patch-lib_ephy-spell-check.c
deleted file mode 100644
index bd68a07d9..000000000
--- a/www/epiphany/files/patch-lib_ephy-spell-check.c
+++ /dev/null
@@ -1,20 +0,0 @@
---- lib/ephy-spell-check.c.orig 2008-03-17 00:41:47.000000000 -0400
-+++ lib/ephy-spell-check.c 2008-03-17 00:47:22.000000000 -0400
-@@ -69,8 +69,15 @@ ephy_spell_check_init (EphySpellCheck *s
- priv->dict = enchant_broker_request_dict (priv->broker, *locale);
- if (priv->dict != NULL) break;
- }
-- if (priv->dict == NULL)
-- g_warning (enchant_broker_get_error (priv->broker));
-+ if (priv->dict == NULL) {
-+ g_warning ("No dictionary found for current locale; trying 'en'");
-+ priv->dict = enchant_broker_request_dict (priv->broker, "en");
-+
-+ if (priv->dict == NULL) {
-+ g_warning (enchant_broker_get_error (priv->broker));
-+ g_warning ("No dictionary found; expect a crash until LANG is properly set");
-+ }
-+ }
- }
-
- static void