diff options
| author | Richard M. Stallman | 1996-07-31 17:18:54 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1996-07-31 17:18:54 +0000 |
| commit | 30e671c33ffdb89b8b2450a7be95c2a5c454cdb3 (patch) | |
| tree | b7c5363656117127476dcf6da46e996f56cf8ecd /src/xterm.c | |
| parent | a9be683969176860404ca36ab0514556e2b76dd6 (diff) | |
| download | emacs-30e671c33ffdb89b8b2450a7be95c2a5c454cdb3.tar.gz emacs-30e671c33ffdb89b8b2450a7be95c2a5c454cdb3.zip | |
(XTread_socket): Delete the code to pass menu bar keys
to the toolkit alone.
(XTread_socket): Don't fail to pass button events to toolkit.
Diffstat (limited to 'src/xterm.c')
| -rw-r--r-- | src/xterm.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/xterm.c b/src/xterm.c index 28cd058fb22..5dfffb0ef8e 100644 --- a/src/xterm.c +++ b/src/xterm.c | |||
| @@ -4059,6 +4059,7 @@ XTread_socket (sd, bufp, numchars, waitp, expected) | |||
| 4059 | else if (event.type == ButtonPress) | 4059 | else if (event.type == ButtonPress) |
| 4060 | { | 4060 | { |
| 4061 | last_mouse_press_frame = Qnil; | 4061 | last_mouse_press_frame = Qnil; |
| 4062 | goto OTHER; | ||
| 4062 | } | 4063 | } |
| 4063 | #ifdef USE_MOTIF /* This should do not harm for Lucid, | 4064 | #ifdef USE_MOTIF /* This should do not harm for Lucid, |
| 4064 | but I am trying to be cautious. */ | 4065 | but I am trying to be cautious. */ |
| @@ -4072,6 +4073,8 @@ XTread_socket (sd, bufp, numchars, waitp, expected) | |||
| 4072 | SET_SAVED_BUTTON_EVENT; | 4073 | SET_SAVED_BUTTON_EVENT; |
| 4073 | } | 4074 | } |
| 4074 | } | 4075 | } |
| 4076 | else | ||
| 4077 | goto OTHER; | ||
| 4075 | } | 4078 | } |
| 4076 | #endif /* USE_MOTIF */ | 4079 | #endif /* USE_MOTIF */ |
| 4077 | else | 4080 | else |