emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r100828: * xmenu.c (create_and_show_p


From: Andreas Schwab
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r100828: * xmenu.c (create_and_show_popup_menu, xmenu_show): Fix type of timestamp argument.
Date: Thu, 15 Jul 2010 23:53:32 +0200
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 100828
committer: Andreas Schwab <address@hidden>
branch nick: emacs
timestamp: Thu 2010-07-15 23:53:32 +0200
message:
  * xmenu.c (create_and_show_popup_menu, xmenu_show): Fix type of timestamp 
argument.
modified:
  src/ChangeLog
  src/xmenu.c
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2010-07-15 16:48:34 +0000
+++ b/src/ChangeLog     2010-07-15 21:53:32 +0000
@@ -1,3 +1,8 @@
+2010-07-15  Andreas Schwab  <address@hidden>
+
+       * xmenu.c (create_and_show_popup_menu, xmenu_show): Fix type of
+       timestamp argument.
+
 2010-07-15  Eli Zaretskii  <address@hidden>
 
        * fringe.c (update_window_fringes): Restore mistakenly reverted

=== modified file 'src/xmenu.c'
--- a/src/xmenu.c       2010-07-14 14:32:25 +0000
+++ b/src/xmenu.c       2010-07-15 21:53:32 +0000
@@ -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;


reply via email to

[Prev in Thread] Current Thread [Next in Thread]