mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
updated for version 7.3.095
Problem: Win32: In Chinese tear-off menu doesn't work. (Weasley) Solution: Use menu_name_equal(). (Alex Jakushev)
This commit is contained in:
parent
7eb4652e74
commit
d91f704b03
@ -2342,7 +2342,7 @@ gui_find_menu(path_name)
|
||||
|
||||
while (menu != NULL)
|
||||
{
|
||||
if (STRCMP(name, menu->name) == 0 || STRCMP(name, menu->dname) == 0)
|
||||
if (menu_name_equal(name, menu))
|
||||
{
|
||||
if (menu->children == NULL)
|
||||
{
|
||||
|
@ -714,6 +714,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
95,
|
||||
/**/
|
||||
94,
|
||||
/**/
|
||||
|
Loading…
x
Reference in New Issue
Block a user