all repos — st @ 8b602a37a65a3c001bd9334d8b1cfc17fc5dd45c

st (suckless terminal) config

fix: do not need an extra variable for a single read
Markus Teich markus.teich@stusta.mhn.de
commit

8b602a37a65a3c001bd9334d8b1cfc17fc5dd45c

parent

6e1c7c8afce3a0e6f896231a3155a27543d261e5

1 files changed, 1 insertions(+), 4 deletions(-)

jump to
M st.cst.c

@@ -3375,7 +3375,6 @@ }

char* kmap(KeySym k, uint state) { - uint mask; Key *kp; int i;

@@ -3390,12 +3389,10 @@ return NULL;

} 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) {