remove dead code. Fix CID 1256184

This commit is contained in:
Boris Faure 2014-11-29 22:03:38 +01:00
parent cc87372941
commit 74912ae1e9
1 changed files with 0 additions and 1 deletions

View File

@ -77,7 +77,6 @@ _key_try(Termpty *ty, const Tty_Key *map, int len, const Evas_Event_Key_Down *ev
else if (alt && !ctrl && shift) s = &kv->shift_alt;
else if (!alt && ctrl && shift) s = &kv->shift_ctrl;
else if (alt && ctrl && shift) s = &kv->shift_ctrl_alt;
else continue;
termpty_write(ty, s->s, s->len);
return EINA_TRUE;