aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/xterm.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/xterm.c b/src/xterm.c
index ad00a4eccf1..3b774e3b621 100644
--- a/src/xterm.c
+++ b/src/xterm.c
@@ -9434,7 +9434,10 @@ XTread_socket (sd, bufp, numchars, expected)
9434 if (status_return == XLookupNone) 9434 if (status_return == XLookupNone)
9435 break; 9435 break;
9436 else if (status_return == XLookupChars) 9436 else if (status_return == XLookupChars)
9437 keysym = NoSymbol; 9437 {
9438 keysym = NoSymbol;
9439 modifiers = 0;
9440 }
9438 else if (status_return != XLookupKeySym 9441 else if (status_return != XLookupKeySym
9439 && status_return != XLookupBoth) 9442 && status_return != XLookupBoth)
9440 abort (); 9443 abort ();