billiob pushed a commit to branch master.

http://git.enlightenment.org/apps/terminology.git/commit/?id=2ae440c9c29f769b773d37161de9a2e789c2b789

commit 2ae440c9c29f769b773d37161de9a2e789c2b789
Author: Boris Faure <bill...@gmail.com>
Date:   Sun Oct 5 23:06:46 2014 +0200

    fix segfault. Closes T1716
---
 src/bin/keyin.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/bin/keyin.c b/src/bin/keyin.c
index b706a42..3247326 100644
--- a/src/bin/keyin.c
+++ b/src/bin/keyin.c
@@ -85,9 +85,9 @@ _key_try(Termpty *ty, const Tty_Key *map, int len, const 
Evas_Event_Key_Down *ev
                   s = &kv->ctrl_alt;
              else if (!alt && !ctrl && shift)
                   s = &kv->shift;
-             else if (!alt && !ctrl && shift)
+             else if (alt && !ctrl && shift)
                   s = &kv->shift_alt;
-             else if (!alt && !ctrl && shift)
+             else if (!alt && ctrl && shift)
                   s = &kv->shift_ctrl;
              else if (alt && ctrl && shift)
                   s = &kv->shift_ctrl_alt;

-- 


Reply via email to