aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/xterm.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/xterm.c b/src/xterm.c
index 2e3e8a4d3e3..474082d7b47 100644
--- a/src/xterm.c
+++ b/src/xterm.c
@@ -1564,6 +1564,10 @@ x_find_modifier_meanings ()
1564 KeyCode code = 1564 KeyCode code =
1565 mods->modifiermap[(row * mods->max_keypermod) + col]; 1565 mods->modifiermap[(row * mods->max_keypermod) + col];
1566 1566
1567 /* Zeroes are used for filler. Skip them. */
1568 if (code == 0)
1569 continue;
1570
1567 /* Are any of this keycode's keysyms a meta key? */ 1571 /* Are any of this keycode's keysyms a meta key? */
1568 { 1572 {
1569 int code_col; 1573 int code_col;