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:
parent
15910e5da3
commit
d7fc7bdd81
1 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue