0
0
mirror of https://github.com/vim/vim.git synced 2025-10-01 04:54:07 -04:00

updated for version 7.0074

This commit is contained in:
Bram Moolenaar
2005-05-20 21:22:17 +00:00
parent 686f51ef8e
commit c1087e64bc
2 changed files with 21 additions and 2 deletions

View File

@@ -1667,7 +1667,7 @@ process_message(void)
* mapped we want to use the mapping instead. */
if (vk == VK_F10
&& gui.menu_is_active
&& check_map(k10, State, FALSE) == NULL)
&& check_map(k10, State, FALSE, TRUE) == NULL)
break;
#endif
if (GetKeyState(VK_SHIFT) & 0x8000)
@@ -1781,7 +1781,7 @@ process_message(void)
/* Check for <F10>: Default effect is to select the menu. When <F10> is
* mapped we need to stop it here to avoid strange effects (e.g., for the
* key-up event) */
if (vk != VK_F10 || check_map(k10, State, FALSE) == NULL)
if (vk != VK_F10 || check_map(k10, State, FALSE, TRUE) == NULL)
#endif
DispatchMessage(&msg);
}