Be careful about mar77i's patches.

This commit is contained in:
Christoph Lohmann
2012-12-10 23:02:58 +01:00
parent 78215c8ee0
commit 2696f81875
2 changed files with 7 additions and 6 deletions

5
st.c
View File

@ -2742,12 +2742,13 @@ kmap(KeySym k, uint state) {
continue;
if(term.numlock && kp->appkey == 2)
continue;
} else if (kp->appkey < 0 && IS_SET(MODE_APPKEYPAD)) {
} else if(kp->appkey < 0 && IS_SET(MODE_APPKEYPAD)) {
continue;
}
if((kp->appcursor < 0 && IS_SET(MODE_APPCURSOR)) ||
(kp->appcursor > 0 && !IS_SET(MODE_APPCURSOR))) {
(kp->appcursor > 0
&& !IS_SET(MODE_APPCURSOR))) {
continue;
}