aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Lohmann <20h@r-36.net>2012-12-13 20:57:15 +0100
committerChristoph Lohmann <20h@r-36.net>2012-12-13 20:57:15 +0100
commitfc2b3669682eaf571fc96762bd3c8e48bccac989 (patch)
tree2960062a97b9f31bf8504df0c6a19986c61be114
parent3c6ec1995d8ec4d8d5da7ca81d15adfdb08086aa (diff)
downloadst-fc2b3669682eaf571fc96762bd3c8e48bccac989.tar.gz
st-fc2b3669682eaf571fc96762bd3c8e48bccac989.zip
Checking for the lower X11 special keys too. Thanks Benjamin R. Haskell!
-rw-r--r--st.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/st.c b/st.c
index da5f78d..433f7b4 100644
--- a/st.c
+++ b/st.c
@@ -2728,7 +2728,7 @@ kmap(KeySym k, uint state) {
2728 break; 2728 break;
2729 } 2729 }
2730 if(i == LEN(mappedkeys)) { 2730 if(i == LEN(mappedkeys)) {
2731 if((k & 0xFFFF) < 0xFF00) 2731 if((k & 0xFFFF) < 0xFD00)
2732 return NULL; 2732 return NULL;
2733 } 2733 }
2734 2734