aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1997-03-22 23:59:53 +0000
committerRichard M. Stallman1997-03-22 23:59:53 +0000
commit441affdb50dc5d0dabe383fb54d42b9aecc19325 (patch)
tree8f40bf2ea622d409c145c73f3531d41e7d9a0e66 /src
parent04f215f0ccacc0c383a9b17000c622652db523c2 (diff)
downloademacs-441affdb50dc5d0dabe383fb54d42b9aecc19325.tar.gz
emacs-441affdb50dc5d0dabe383fb54d42b9aecc19325.zip
(XTread_socket): Accept XK_ISO_* keys.
Diffstat (limited to 'src')
-rw-r--r--src/xterm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xterm.c b/src/xterm.c
index 0c8f61b18e6..a854b7b9c50 100644
--- a/src/xterm.c
+++ b/src/xterm.c
@@ -4117,7 +4117,7 @@ XTread_socket (sd, bufp, numchars, expected)
4117 if (((keysym >= XK_BackSpace && keysym <= XK_Escape) 4117 if (((keysym >= XK_BackSpace && keysym <= XK_Escape)
4118 || keysym == XK_Delete 4118 || keysym == XK_Delete
4119#ifdef XK_ISO_Left_Tab 4119#ifdef XK_ISO_Left_Tab
4120 || keysym == XK_ISO_Left_Tab 4120 || (keysym >= XK_ISO_Left_Tab && keysym <= XK_ISO_Enter)
4121#endif 4121#endif
4122 || IsCursorKey (keysym) /* 0xff50 <= x < 0xff60 */ 4122 || IsCursorKey (keysym) /* 0xff50 <= x < 0xff60 */
4123 || IsMiscFunctionKey (keysym) /* 0xff60 <= x < VARIES */ 4123 || IsMiscFunctionKey (keysym) /* 0xff60 <= x < VARIES */