diff src/xmenu.c @ 30215:4e401f4a55aa

(menu_highlight_callback): Use kbd_buffer_store_help_event instead of setting up and input_event structure manually.
author Gerd Moellmann <gerd@gnu.org>
date Fri, 14 Jul 2000 13:56:26 +0000
parents 770a280db6ee
children f2cd2bf063c9
line wrap: on
line diff
--- a/src/xmenu.c	Fri Jul 14 13:56:09 2000 +0000
+++ b/src/xmenu.c	Fri Jul 14 13:56:26 2000 +0000
@@ -1196,7 +1196,6 @@
   widget_value *wv = (widget_value *) call_data;
   struct frame *f;
   Lisp_Object frame, help;
-  struct input_event buf;
 
   /* Determine the frame for the help event.  */
   f = menubar_id_to_frame (id);
@@ -1221,10 +1220,7 @@
 
   /* Store the help event.  */
   help = wv && wv->help ? build_string (wv->help) : Qnil;
-  buf.kind = HELP_EVENT;
-  buf.frame_or_window = frame;
-  buf.arg = help;
-  kbd_buffer_store_event (&buf);
+  kbd_buffer_store_help_event (frame, help);
 }
 
 /* This callback is called from the menu bar pulldown menu