diff options
author | Christoph Lohmann <20h@r-36.net> | 2012-12-10 23:02:58 +0100 |
---|---|---|
committer | Christoph Lohmann <20h@r-36.net> | 2012-12-10 23:02:58 +0100 |
commit | 2696f8187509eb94644bbac5b05348e37c391bea (patch) | |
tree | d6f6c84929a26c38cf998d3f864430f35b1fae63 /st.c | |
parent | 78215c8ee0f4cb62655730260520f185ce97c620 (diff) | |
download | st-2696f8187509eb94644bbac5b05348e37c391bea.tar.gz st-2696f8187509eb94644bbac5b05348e37c391bea.tar.bz2 |
Be careful about mar77i's patches.
Diffstat (limited to 'st.c')
-rw-r--r-- | st.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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; } |