aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1994-04-25 22:06:13 +0000
committerRichard M. Stallman1994-04-25 22:06:13 +0000
commitafb66a9aa83c6ff9b97d79d90fabbdf75c3aad8e (patch)
tree7dc153d99ef6b1c2529e39cd9752e4731e456835 /src
parent1387d54e38a905db73f8b8a17e4d6ae569d88113 (diff)
downloademacs-afb66a9aa83c6ff9b97d79d90fabbdf75c3aad8e.tar.gz
emacs-afb66a9aa83c6ff9b97d79d90fabbdf75c3aad8e.zip
(XTread_socket) [USE_X_TOOLKIT]: Let toolkit handle menu bar click.
Diffstat (limited to 'src')
-rw-r--r--src/xterm.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/xterm.c b/src/xterm.c
index 1fdeab0b1cc..06f45450035 100644
--- a/src/xterm.c
+++ b/src/xterm.c
@@ -4133,8 +4133,11 @@ XTread_socket (sd, bufp, numchars, waitp, expected)
4133 { 4133 {
4134 f = x_any_window_to_frame (event.xbutton.window); 4134 f = x_any_window_to_frame (event.xbutton.window);
4135 if (f && event.type == ButtonPress) 4135 if (f && event.type == ButtonPress)
4136 goto OTHER;
4137#if 0
4136 construct_menu_click (&emacs_event, 4138 construct_menu_click (&emacs_event,
4137 &event, f); 4139 &event, f);
4140#endif
4138 } 4141 }
4139#endif /* USE_X_TOOLKIT */ 4142#endif /* USE_X_TOOLKIT */
4140 } 4143 }