1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-06 03:40:56 -08:00

Fix typo in last change

* src/xterm.c (handle_one_xevent): Use `xi_done_keysym' label
when ignoring modifier keys from XI2 input.
This commit is contained in:
Po Lu 2022-02-20 10:05:46 +08:00
parent 15910e5da3
commit d7fc7bdd81

View file

@ -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;
}
}
}