aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman2002-01-04 22:17:33 +0000
committerRichard M. Stallman2002-01-04 22:17:33 +0000
commit453c551083388f9878d8cb347f6a3b47a822a65a (patch)
tree1e1c95064c1b9b578ef5ad3f657a113dd7724ffc /src
parent336b2b2e9afbdc4f949277bae6d09fb9025c4fa3 (diff)
downloademacs-453c551083388f9878d8cb347f6a3b47a822a65a.tar.gz
emacs-453c551083388f9878d8cb347f6a3b47a822a65a.zip
(menu_highlight_callback): Hide any tooltip window.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/xmenu.c2
2 files changed, 6 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 4bad3889f74..ad54a7032b6 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12002-01-04 Richard M. Stallman <rms@gnu.org>
2
3 * xmenu.c (menu_highlight_callback): Hide any tooltip window.
4
12002-01-03 Richard M. Stallman <rms@gnu.org> 52002-01-03 Richard M. Stallman <rms@gnu.org>
2 6
3 * keymap.c (Fcurrent_active_maps): Put the `keymap' property map first. 7 * keymap.c (Fcurrent_active_maps): Put the `keymap' property map first.
diff --git a/src/xmenu.c b/src/xmenu.c
index 3df3cab9be4..28a94c8f92c 100644
--- a/src/xmenu.c
+++ b/src/xmenu.c
@@ -1191,6 +1191,8 @@ menu_highlight_callback (widget, id, call_data)
1191 f = menubar_id_to_frame (id); 1191 f = menubar_id_to_frame (id);
1192 if (f) 1192 if (f)
1193 { 1193 {
1194 Fx_hide_tip ();
1195
1194 XSETFRAME (frame, f); 1196 XSETFRAME (frame, f);
1195 kbd_buffer_store_help_event (frame, help); 1197 kbd_buffer_store_help_event (frame, help);
1196 } 1198 }