summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'plugins')
-rw-r--r--plugins/spell/pluma-spell-checker.c16
1 files changed, 9 insertions, 7 deletions
diff --git a/plugins/spell/pluma-spell-checker.c b/plugins/spell/pluma-spell-checker.c
index e269faf4..394c3bbf 100644
--- a/plugins/spell/pluma-spell-checker.c
+++ b/plugins/spell/pluma-spell-checker.c
@@ -247,15 +247,17 @@ lazy_init (PlumaSpellChecker *spell,
/* Second try to get a default language */
if (spell->active_lang == NULL)
+ {
spell->active_lang = pluma_spell_checker_language_from_key ("en_US");
- /* Last try to get a default language */
- if (spell->active_lang == NULL)
- {
- const GSList *langs;
- langs = pluma_spell_checker_get_available_languages ();
- if (langs != NULL)
- spell->active_lang = (const PlumaSpellCheckerLanguage *)langs->data;
+ /* Last try to get a default language */
+ if (spell->active_lang == NULL)
+ {
+ const GSList *langs;
+ langs = pluma_spell_checker_get_available_languages ();
+ if (langs != NULL)
+ spell->active_lang = (const PlumaSpellCheckerLanguage *)langs->data;
+ }
}
if (spell->active_lang != NULL)