From abc251a7423bcc8792b6c34cebd9eeb94fff4ff1 Mon Sep 17 00:00:00 2001 From: Dave Love Date: Wed, 3 Jul 2002 22:17:37 +0000 Subject: [PATCH] (XTread_socket): Add extra dead keysyms. --- src/xterm.c | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/src/xterm.c b/src/xterm.c index 9b6ba07a380..f3bda14581d 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -10606,6 +10606,27 @@ XTread_socket (sd, bufp, numchars, expected) #endif #ifdef XK_dead_abovedot || orig_keysym == XK_dead_abovedot +#endif +#ifdef XK_dead_abovering + || orig_keysym == XK_dead_abovering +#endif +#ifdef XK_dead_iota + || orig_keysym == XK_dead_iota +#endif +#ifdef XK_dead_belowdot + || orig_keysym == XK_dead_belowdot +#endif +#ifdef XK_dead_voiced_sound + || orig_keysym == XK_dead_voiced_sound +#endif +#ifdef XK_dead_semivoiced_sound + || orig_keysym == XK_dead_semivoiced_sound +#endif +#ifdef XK_dead_hook + || orig_keysym == XK_dead_hook +#endif +#ifdef XK_dead_horn + || orig_keysym == XK_dead_horn #endif || IsKeypadKey (keysym) /* 0xff80 <= x < 0xffbe */ || IsFunctionKey (keysym) /* 0xffbe <= x < 0xffe1 */ @@ -10655,7 +10676,7 @@ XTread_socket (sd, bufp, numchars, expected) if (/* If the event is not from XIM, */ event.xkey.keycode != 0 /* or the current locale doesn't request - decoding of the intup data, ... */ + decoding of the input data, ... */ || ! CODING_REQUIRE_DECODING (&coding)) { /* ... we can use the input data as is. */ -- 2.39.5