diff options
-rw-r--r-- | widgets/misc/e-unicode.c | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/widgets/misc/e-unicode.c b/widgets/misc/e-unicode.c index a0101af3d3..3e3344d37c 100644 --- a/widgets/misc/e-unicode.c +++ b/widgets/misc/e-unicode.c @@ -195,17 +195,7 @@ e_utf8_from_gtk_event_key (GtkWidget *widget, guint keyval, const gchar *string) gint unilen; if (keyval == GDK_VoidSymbol) { - char *use_locale = getenv ("E_UTF8_IM_USE_LOCALE"); - - /* FIXME This condition is meant for debugging xim input and should - * be removed once testing is done - */ - if (use_locale) { - utf = e_utf8_from_locale_string (string); - } else { - utf = e_utf8_from_gtk_string (widget, string); - } - + utf = e_utf8_from_locale_string (string); } else { unival = gdk_keyval_to_unicode (keyval); |