aboutsummaryrefslogtreecommitdiffhomepage
path: root/st.c
diff options
context:
space:
mode:
authorGravatar Christoph Lohmann <20h@r-36.net>2012-12-10 23:02:58 +0100
committerGravatar Christoph Lohmann <20h@r-36.net>2012-12-10 23:02:58 +0100
commit2696f8187509eb94644bbac5b05348e37c391bea (patch)
treed6f6c84929a26c38cf998d3f864430f35b1fae63 /st.c
parent78215c8ee0f4cb62655730260520f185ce97c620 (diff)
Be careful about mar77i's patches.
Diffstat (limited to 'st.c')
-rw-r--r--st.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/st.c b/st.c
index fc64a77..42061b9 100644
--- a/st.c
+++ b/st.c
@@ -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;
}