From 8b602a37a65a3c001bd9334d8b1cfc17fc5dd45c Mon Sep 17 00:00:00 2001 From: Markus Teich Date: Sat, 22 Jun 2013 23:05:03 +0200 Subject: [PATCH] fix: do not need an extra variable for a single read --- st.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/st.c b/st.c index 66aca2d..16803ec 100644 --- a/st.c +++ b/st.c @@ -3375,7 +3375,6 @@ numlock(const Arg *dummy) { char* kmap(KeySym k, uint state) { - uint mask; Key *kp; int i; @@ -3390,12 +3389,10 @@ kmap(KeySym k, uint state) { } for(kp = key; kp < key + LEN(key); kp++) { - mask = kp->mask; - if(kp->k != k) continue; - if(!match(mask, state)) + if(!match(kp->mask, state)) continue; if(kp->appkey > 0) { -- libgit2 1.1.1