efl/ecore_imf/scim: remove unused code

SVN revision: 82705
This commit is contained in:
Jihoon Kim 2013-01-12 15:51:57 +00:00
parent 95fc2dcc4e
commit 8412b59c4b
1 changed files with 0 additions and 7 deletions

View File

@ -211,8 +211,6 @@ static Ecore_X_Window _client_window
static bool _on_the_spot = true;
static bool _shared_input_method = false;
static Eina_Bool autocap_allow = EINA_FALSE;
static Display *__current_display = 0;
static int __current_alt_mask = Mod1Mask;
static int __current_meta_mask = 0;
@ -414,7 +412,6 @@ EAPI EcoreIMFContextISF *
isf_imf_context_new(void)
{
SCIM_DEBUG_FRONTEND(1) << __FUNCTION__ << "...\n";
char *env;
EcoreIMFContextISF *context_scim = new EcoreIMFContextISF;
if (context_scim == NULL)
@ -431,10 +428,6 @@ isf_imf_context_new(void)
_scim_initialized = true;
}
env = getenv("ECORE_IMF_AUTOCAPITAL_ALLOW");
if (env)
autocap_allow = !!atoi(env);
return context_scim;
}