# HG changeset patch # User Andreas Schwab # Date 1279230812 -7200 # Node ID f8f118e78387a10e3eb8bcaa6cae6c9836cd1f91 # Parent 9ad1e76fc718b922967c3ce54dfca968eb116c56 * xmenu.c (create_and_show_popup_menu, xmenu_show): Fix type of timestamp argument. diff -r 9ad1e76fc718 -r f8f118e78387 src/ChangeLog --- a/src/ChangeLog Thu Jul 15 19:48:34 2010 +0300 +++ b/src/ChangeLog Thu Jul 15 23:53:32 2010 +0200 @@ -1,3 +1,8 @@ +2010-07-15 Andreas Schwab + + * xmenu.c (create_and_show_popup_menu, xmenu_show): Fix type of + timestamp argument. + 2010-07-15 Eli Zaretskii * fringe.c (update_window_fringes): Restore mistakenly reverted diff -r 9ad1e76fc718 -r f8f118e78387 src/xmenu.c --- a/src/xmenu.c Thu Jul 15 19:48:34 2010 +0300 +++ b/src/xmenu.c Thu Jul 15 23:53:32 2010 +0200 @@ -1562,7 +1562,8 @@ 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 @@ 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;