Browse Source

Checking for the lower X11 special keys too. Thanks Benjamin R. Haskell!

master
Christoph Lohmann 11 years ago
parent
commit
fc2b366968
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      st.c

+ 1
- 1
st.c View File

@ -2728,7 +2728,7 @@ kmap(KeySym k, uint state) {
break;
}
if(i == LEN(mappedkeys)) {
if((k & 0xFFFF) < 0xFF00)
if((k & 0xFFFF) < 0xFD00)
return NULL;
}


Loading…
Cancel
Save