aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1998-06-09 01:55:49 +0000
committerRichard M. Stallman1998-06-09 01:55:49 +0000
commit852bff8fd8a99bb4821ef9610ebbc958c36af306 (patch)
tree9525fb9a8f1f9e3bcf07c28402e8daeba3899c22 /src
parent5936754e60c9c92c46d353e4c7b32a424bffdc60 (diff)
downloademacs-852bff8fd8a99bb4821ef9610ebbc958c36af306.tar.gz
emacs-852bff8fd8a99bb4821ef9610ebbc958c36af306.zip
(XTread_socket): Accept Japanese XK keysyms.
Diffstat (limited to 'src')
-rw-r--r--src/xterm.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/xterm.c b/src/xterm.c
index 4bde3ce0bba..5ddeeb0e100 100644
--- a/src/xterm.c
+++ b/src/xterm.c
@@ -4247,6 +4247,7 @@ XTread_socket (sd, bufp, numchars, expected)
4247#ifdef XK_ISO_Left_Tab 4247#ifdef XK_ISO_Left_Tab
4248 || (keysym >= XK_ISO_Left_Tab && keysym <= XK_ISO_Enter) 4248 || (keysym >= XK_ISO_Left_Tab && keysym <= XK_ISO_Enter)
4249#endif 4249#endif
4250 || (keysym >= XK_Kanji && keysym <= XK_Eisu_toggle)
4250 || IsCursorKey (keysym) /* 0xff50 <= x < 0xff60 */ 4251 || IsCursorKey (keysym) /* 0xff50 <= x < 0xff60 */
4251 || IsMiscFunctionKey (keysym) /* 0xff60 <= x < VARIES */ 4252 || IsMiscFunctionKey (keysym) /* 0xff60 <= x < VARIES */
4252#ifdef HPUX 4253#ifdef HPUX