aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJan Djärv2003-01-19 23:06:42 +0000
committerJan Djärv2003-01-19 23:06:42 +0000
commit22174d100dbf907e34919377aa33599efd015968 (patch)
tree951f0805c7ad4354cea8ffd31e0c141b5d103a01 /src
parentb73e73bfb1c931efe9554f9a6b83961d21982494 (diff)
downloademacs-22174d100dbf907e34919377aa33599efd015968.tar.gz
emacs-22174d100dbf907e34919377aa33599efd015968.zip
*** empty log message ***
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog5
-rw-r--r--src/xterm.c4
2 files changed, 9 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 428a9ca6ae6..295609135a0 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
12003-01-20 Jan D. <jan.h.d@swipnet.se>
2
3 * gtkutil.c (xg_create_frame_widgets): Check if there is an
4 external tool bar before setting tool bar height.
5
12003-01-19 Jan D. <jan.h.d@swipnet.se> 62003-01-19 Jan D. <jan.h.d@swipnet.se>
2 7
3 * xterm.c (handle_one_xevent): Surround popup_activated 8 * xterm.c (handle_one_xevent): Surround popup_activated
diff --git a/src/xterm.c b/src/xterm.c
index 348355d2b5b..08043900468 100644
--- a/src/xterm.c
+++ b/src/xterm.c
@@ -10692,9 +10692,11 @@ handle_one_xevent (dpyinfo, eventp, bufp_r, numcharsp, finish)
10692 10692
10693 case KeyPress: 10693 case KeyPress:
10694 10694
10695#if defined (USE_X_TOOLKIT) || defined (USE_GTK)
10695 /* Dispatch KeyPress events when in menu. */ 10696 /* Dispatch KeyPress events when in menu. */
10696 if (popup_activated ()) 10697 if (popup_activated ())
10697 goto OTHER; 10698 goto OTHER;
10699#endif
10698 10700
10699 f = x_any_window_to_frame (dpyinfo, event.xkey.window); 10701 f = x_any_window_to_frame (dpyinfo, event.xkey.window);
10700 10702
@@ -11375,7 +11377,9 @@ handle_one_xevent (dpyinfo, eventp, bufp_r, numcharsp, finish)
11375 if (!dpyinfo->x_focus_frame 11377 if (!dpyinfo->x_focus_frame
11376 || f == dpyinfo->x_focus_frame) 11378 || f == dpyinfo->x_focus_frame)
11377 { 11379 {
11380#if defined (USE_X_TOOLKIT) || defined (USE_GTK)
11378 if (! popup_activated ()) 11381 if (! popup_activated ())
11382#endif
11379 construct_mouse_click (&emacs_event, &event, f); 11383 construct_mouse_click (&emacs_event, &event, f);
11380 } 11384 }
11381 } 11385 }