From d7fc7bdd81acd37fda8c094754e3f118e11a3b2a Mon Sep 17 00:00:00 2001 From: Po Lu Date: Sun, 20 Feb 2022 10:05:46 +0800 Subject: [PATCH] Fix typo in last change * src/xterm.c (handle_one_xevent): Use `xi_done_keysym' label when ignoring modifier keys from XI2 input. --- src/xterm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/xterm.c b/src/xterm.c index 4c1c4312172..01de3e27b96 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -11576,7 +11576,7 @@ handle_one_xevent (struct x_display_info *dpyinfo, XkbDescRec *rec = FRAME_DISPLAY_INFO (f)->xkb_desc; if (rec->map->modmap && rec->map->modmap[xev->detail]) - goto done_keysym; + goto xi_done_keysym; } else #endif @@ -11586,7 +11586,7 @@ handle_one_xevent (struct x_display_info *dpyinfo, for (i = 0; i < 8 * dpyinfo->modmap->max_keypermod; i++) { if (xkey.keycode == dpyinfo->modmap->modifiermap[xev->detail]) - goto done_keysym; + goto xi_done_keysym; } } } -- 2.39.5