aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndreas Schwab2010-07-15 23:53:32 +0200
committerAndreas Schwab2010-07-15 23:53:32 +0200
commit2b23d2a6b11385b571eeac64f3c1b0e8d194823c (patch)
tree3b239d3cb5999523509fd074409f2b88a1138cd8 /src
parentc4affd2cb4ddec78e76853e8518400d8b2a23ddb (diff)
downloademacs-2b23d2a6b11385b571eeac64f3c1b0e8d194823c.tar.gz
emacs-2b23d2a6b11385b571eeac64f3c1b0e8d194823c.zip
* xmenu.c (create_and_show_popup_menu, xmenu_show): Fix type of timestamp argument.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog5
-rw-r--r--src/xmenu.c6
2 files changed, 9 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 4f6990ba2c8..c2f8c596ed9 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
12010-07-15 Andreas Schwab <schwab@linux-m68k.org>
2
3 * xmenu.c (create_and_show_popup_menu, xmenu_show): Fix type of
4 timestamp argument.
5
12010-07-15 Eli Zaretskii <eliz@gnu.org> 62010-07-15 Eli Zaretskii <eliz@gnu.org>
2 7
3 * fringe.c (update_window_fringes): Restore mistakenly reverted 8 * fringe.c (update_window_fringes): Restore mistakenly reverted
diff --git a/src/xmenu.c b/src/xmenu.c
index 4b99297e772..8da68c6d876 100644
--- a/src/xmenu.c
+++ b/src/xmenu.c
@@ -1562,7 +1562,8 @@ pop_down_menu (Lisp_Object arg)
1562 menu pops down. 1562 menu pops down.
1563 menu_item_selection will be set to the selection. */ 1563 menu_item_selection will be set to the selection. */
1564static void 1564static void
1565create_and_show_popup_menu (FRAME_PTR f, widget_value *first_wv, int x, int y, int for_click, unsigned int timestamp) 1565create_and_show_popup_menu (FRAME_PTR f, widget_value *first_wv,
1566 int x, int y, int for_click, EMACS_UINT timestamp)
1566{ 1567{
1567 int i; 1568 int i;
1568 Arg av[2]; 1569 Arg av[2];
@@ -2275,7 +2276,8 @@ pop_down_menu (Lisp_Object arg)
2275 2276
2276 2277
2277Lisp_Object 2278Lisp_Object
2278xmenu_show (FRAME_PTR f, int x, int y, int for_click, int keymaps, Lisp_Object title, char **error, unsigned int timestamp) 2279xmenu_show (FRAME_PTR f, int x, int y, int for_click, int keymaps,
2280 Lisp_Object title, char **error, EMACS_UINT timestamp)
2279{ 2281{
2280 Window root; 2282 Window root;
2281 XMenu *menu; 2283 XMenu *menu;