aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--nncmpp.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/nncmpp.c b/nncmpp.c
index 5fa6d99..ec8a735 100644
--- a/nncmpp.c
+++ b/nncmpp.c
@@ -6061,8 +6061,14 @@ on_x11_keypress (XEvent *e)
memcpy (k.multibyte, p, MIN (cp_len, sizeof k.multibyte - 1));
p += cp_len;
- // This is unfortunate, but probably in the right place.
- if (cp >= 32)
+ // This is all unfortunate, but probably in the right place.
+ if (!cp)
+ {
+ k.code.codepoint = ' ';
+ if (ev->state & ShiftMask)
+ k.modifiers |= TERMO_KEYMOD_SHIFT;
+ }
+ else if (cp >= 32)
k.code.codepoint = cp;
else if (ev->state & ShiftMask)
k.code.codepoint = cp + 64;