diff options
author | Gerd Moellmann <gerd@gnu.org> | 2000-06-11 12:12:52 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2000-06-11 12:12:52 +0000 |
commit | a52445bda81c2fef4504db86a02d5b4ea37553f0 (patch) | |
tree | a1bcd02f9c1b1c615f7728f865b3b7281b792f74 | |
parent | 70223ca45de140e28d29f476a96d84d02661ff62 (diff) | |
download | emacs-a52445bda81c2fef4504db86a02d5b4ea37553f0.tar.gz |
(xmenu_show): Case second parameter of lw_popup_menu
to `XEvent *'.
-rw-r--r-- | src/xmenu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xmenu.c b/src/xmenu.c index 2bc24d6d1fc..1cdfe3a923b 100644 --- a/src/xmenu.c +++ b/src/xmenu.c @@ -2193,7 +2193,7 @@ xmenu_show (f, x, y, for_click, keymaps, title, error) menu_item_selection = 0; /* Display the menu. */ - lw_popup_menu (menu, &dummy); + lw_popup_menu (menu, (XEvent *) &dummy); x_set_menu_resources_from_menu_face (f, menu); popup_activated_flag = 1; |