From 74912ae1e940d0d3baf2755c2b73fa0554e6b96d Mon Sep 17 00:00:00 2001 From: Boris Faure Date: Sat, 29 Nov 2014 22:03:38 +0100 Subject: [PATCH] remove dead code. Fix CID 1256184 --- src/bin/keyin.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/bin/keyin.c b/src/bin/keyin.c index dadac044..60bbc4e8 100644 --- a/src/bin/keyin.c +++ b/src/bin/keyin.c @@ -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;