Fix #471
This commit is contained in:
parent
bf3bfeaf69
commit
a6d96c9a14
@ -78,7 +78,11 @@ send_key_to_child(Window *w, int key, int mods, int action) {
|
||||
|
||||
static inline bool
|
||||
is_ascii_control_char(char c) {
|
||||
#if CHAR_MIN == 0
|
||||
return (c <= 31) || c == 127;
|
||||
#else
|
||||
return (0 <= c && c <= 31) || c == 127;
|
||||
#endif
|
||||
}
|
||||
|
||||
void
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user