added uppercase chars for C-u and C-h as well
authorAnselm R.Garbe <arg@10ksloc.org>
Thu, 10 Aug 2006 08:10:32 +0000 (10:10 +0200)
committerAnselm R.Garbe <arg@10ksloc.org>
Thu, 10 Aug 2006 08:10:32 +0000 (10:10 +0200)
main.c

diff --git a/main.c b/main.c
index 3458fd5..3b9a24b 100644 (file)
--- a/main.c
+++ b/main.c
@@ -172,9 +172,11 @@ kpress(XKeyEvent * e)
                        return;
                        break;
                case XK_h:
+               case XK_H:
                        ksym = XK_BackSpace;
                        break;
                case XK_u:
+               case XK_U:
                        text[0] = 0;
                        match(text);
                        drawmenu();