From: Po Lu Date: Sun, 20 Feb 2022 02:05:46 +0000 (+0800) Subject: Fix typo in last change X-Git-Tag: emacs-29.0.90~2213 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d7fc7bdd81acd37fda8c094754e3f118e11a3b2a;p=emacs.git Fix typo in last change * src/xterm.c (handle_one_xevent): Use `xi_done_keysym' label when ignoring modifier keys from XI2 input. --- 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; } } }