* xmenu.c (create_and_show_popup_menu, xmenu_show): Fix type of timestamp argument.
authorAndreas Schwab <schwab@linux-m68k.org>
Thu, 15 Jul 2010 21:53:32 +0000 (23:53 +0200)
committerAndreas Schwab <schwab@linux-m68k.org>
Thu, 15 Jul 2010 21:53:32 +0000 (23:53 +0200)
src/ChangeLog
src/xmenu.c

index 4f6990b..c2f8c59 100644 (file)
@@ -1,3 +1,8 @@
+2010-07-15  Andreas Schwab  <schwab@linux-m68k.org>
+
+       * xmenu.c (create_and_show_popup_menu, xmenu_show): Fix type of
+       timestamp argument.
+
 2010-07-15  Eli Zaretskii  <eliz@gnu.org>
 
        * fringe.c (update_window_fringes): Restore mistakenly reverted
index 4b99297..8da68c6 100644 (file)
@@ -1562,7 +1562,8 @@ pop_down_menu (Lisp_Object arg)
    menu pops down.
    menu_item_selection will be set to the selection.  */
 static void
-create_and_show_popup_menu (FRAME_PTR f, widget_value *first_wv, int x, int y, int for_click, unsigned int timestamp)
+create_and_show_popup_menu (FRAME_PTR f, widget_value *first_wv,
+                           int x, int y, int for_click, EMACS_UINT timestamp)
 {
   int i;
   Arg av[2];
@@ -2275,7 +2276,8 @@ pop_down_menu (Lisp_Object arg)
 
 
 Lisp_Object
-xmenu_show (FRAME_PTR f, int x, int y, int for_click, int keymaps, Lisp_Object title, char **error, unsigned int timestamp)
+xmenu_show (FRAME_PTR f, int x, int y, int for_click, int keymaps,
+           Lisp_Object title, char **error, EMACS_UINT timestamp)
 {
   Window root;
   XMenu *menu;