aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer1994-05-05 05:36:17 +0000
committerKarl Heuer1994-05-05 05:36:17 +0000
commitb137c5822bc63a8c678d2ceb2688a7504cb98bd9 (patch)
tree96da51b82e512dbc76a0bd9c076e1935cab3d713 /src
parentcf52ad5812bb3c5796ee75f388e099151af27d04 (diff)
downloademacs-b137c5822bc63a8c678d2ceb2688a7504cb98bd9.tar.gz
emacs-b137c5822bc63a8c678d2ceb2688a7504cb98bd9.zip
(Fx_popup_menu): Restore accidentally-deleted call to mouse_position_hook.
Diffstat (limited to 'src')
-rw-r--r--src/xmenu.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/xmenu.c b/src/xmenu.c
index 87a74a1a09f..7764ce3cd83 100644
--- a/src/xmenu.c
+++ b/src/xmenu.c
@@ -693,6 +693,8 @@ cached information about equivalent key sequences.")
693 int part; 693 int part;
694 unsigned long time; 694 unsigned long time;
695 695
696 if (mouse_position_hook)
697 (*mouse_position_hook) (&new_f, &bar_window, &part, &x, &y, &time);
696 if (new_f != 0) 698 if (new_f != 0)
697 XSET (window, Lisp_Frame, new_f); 699 XSET (window, Lisp_Frame, new_f);
698 else 700 else