aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/keyboard.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/keyboard.c b/src/keyboard.c
index 57c1c760add..6692ddad152 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -3699,6 +3699,10 @@ make_lispy_event (event)
3699 c |= (event->modifiers 3699 c |= (event->modifiers
3700 & (meta_modifier | alt_modifier 3700 & (meta_modifier | alt_modifier
3701 | hyper_modifier | super_modifier)); 3701 | hyper_modifier | super_modifier));
3702 /* Distinguish Shift-SPC from SPC. */
3703 if ((event->code & 0377) == 040
3704 && event->modifiers & shift_modifier)
3705 c |= shift_modifier;
3702 button_down_time = 0; 3706 button_down_time = 0;
3703 XSETFASTINT (lispy_c, c); 3707 XSETFASTINT (lispy_c, c);
3704 return lispy_c; 3708 return lispy_c;