]> git.armaanb.net Git - slock.git/commitdiff
removed control mask handling for slock (quite useless in my eyes)
authorAnselm R. Garbe <arg@10kloc.org>
Thu, 12 Oct 2006 07:44:02 +0000 (09:44 +0200)
committerAnselm R. Garbe <arg@10kloc.org>
Thu, 12 Oct 2006 07:44:02 +0000 (09:44 +0200)
slock.c

diff --git a/slock.c b/slock.c
index 12c991f9af45477fda6e469db38e6fdaa3f24080..0f4c3cc0bc7ea0c0bc2dbf8bb84327c93d46eb7b 100644 (file)
--- a/slock.c
+++ b/slock.c
@@ -91,17 +91,6 @@ main(int argc, char **argv) {
                                        || IsMiscFunctionKey(ksym) || IsPFKey(ksym)
                                        || IsPrivateKeypadKey(ksym))
                                continue;
-                       /* first check if a control mask is omitted */
-                       if(ev.xkey.state & ControlMask) {
-                               switch (ksym) {
-                               case XK_h:
-                               case XK_H: ksym = XK_BackSpace;
-                                       break;
-                               case XK_u:
-                               case XK_U: passwd[0] = 0;
-                                       continue;
-                               }
-                       }
                        switch(ksym) {
                        case XK_Return:
 #if HAVE_SHADOW_H