]> git.eshelyaron.com Git - emacs.git/commitdiff
(menu_highlight_callback): Use
authorGerd Moellmann <gerd@gnu.org>
Fri, 14 Jul 2000 13:56:26 +0000 (13:56 +0000)
committerGerd Moellmann <gerd@gnu.org>
Fri, 14 Jul 2000 13:56:26 +0000 (13:56 +0000)
kbd_buffer_store_help_event instead of setting up and input_event
structure manually.

src/xmenu.c

index c84a6d7b332bb52333239c2dc82f768f179f13ec..b4e92ef12cd49d0cf83b1cd58eb32f61b4247f9e 100644 (file)
@@ -1196,7 +1196,6 @@ menu_highlight_callback (widget, id, call_data)
   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 @@ menu_highlight_callback (widget, id, call_data)
 
   /* 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