From 2696f8187509eb94644bbac5b05348e37c391bea Mon Sep 17 00:00:00 2001 From: Christoph Lohmann <20h@r-36.net> Date: Mon, 10 Dec 2012 23:02:58 +0100 Subject: Be careful about mar77i's patches. --- st.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'st.c') 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; } -- cgit v1.2.1