Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
fdd9d55e
Commit
fdd9d55e
authored
Jun 19, 2000
by
Gerd Moellmann
Browse files
(XTread_socket) <KeyPress>: In case XmbLookupString
returns XLookupChars, reset `modifiers' to zero.
parent
4f5c1376
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
src/xterm.c
src/xterm.c
+4
-1
No files found.
src/xterm.c
View file @
fdd9d55e
...
...
@@ -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 ();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment