mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-12 14:30:42 -08:00
(XTread_socket) <KeyPress>: In case XmbLookupString
returns XLookupChars, reset `modifiers' to zero.
This commit is contained in:
parent
4f5c137609
commit
fdd9d55e57
1 changed files with 4 additions and 1 deletions
|
|
@ -9434,7 +9434,10 @@ XTread_socket (sd, bufp, numchars, expected)
|
|||
if (status_return == XLookupNone)
|
||||
break;
|
||||
else if (status_return == XLookupChars)
|
||||
keysym = NoSymbol;
|
||||
{
|
||||
keysym = NoSymbol;
|
||||
modifiers = 0;
|
||||
}
|
||||
else if (status_return != XLookupKeySym
|
||||
&& status_return != XLookupBoth)
|
||||
abort ();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue