mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-09 21:20:45 -08:00
* menu.c (find_and_return_menu_selection) Add cast.
This commit is contained in:
parent
52e858e558
commit
2da2fd38fb
1 changed files with 1 additions and 1 deletions
|
|
@ -1005,7 +1005,7 @@ find_and_return_menu_selection (FRAME_PTR f, int keymaps, void *client_data)
|
|||
{
|
||||
entry
|
||||
= XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_VALUE];
|
||||
if ((int) (EMACS_INT)client_data == &XVECTOR (menu_items)->contents[i]/*i*/)
|
||||
if ((int) (EMACS_INT)client_data == (int)(&XVECTOR (menu_items)->contents[i]))
|
||||
{
|
||||
if (keymaps != 0)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue