forked from aniani/vim
updated for version 7.2-237
This commit is contained in:
parent
996b6d86cc
commit
20de1c20e6
@ -1734,9 +1734,9 @@ get_x11_icon(test_only)
|
||||
if (oldicon == NULL && !test_only)
|
||||
{
|
||||
if (STRNCMP(T_NAME, "builtin_", 8) == 0)
|
||||
oldicon = T_NAME + 8;
|
||||
oldicon = vim_strsave(T_NAME + 8);
|
||||
else
|
||||
oldicon = T_NAME;
|
||||
oldicon = vim_strsave(T_NAME);
|
||||
}
|
||||
|
||||
return retval;
|
||||
@ -1939,9 +1939,9 @@ get_x11_icon(test_only)
|
||||
if (!test_only)
|
||||
{
|
||||
if (STRNCMP(T_NAME, "builtin_", 8) == 0)
|
||||
oldicon = T_NAME + 8;
|
||||
oldicon = vim_strsave(T_NAME + 8);
|
||||
else
|
||||
oldicon = T_NAME;
|
||||
oldicon = vim_strsave(T_NAME);
|
||||
}
|
||||
return FALSE;
|
||||
}
|
||||
|
@ -676,6 +676,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
237,
|
||||
/**/
|
||||
236,
|
||||
/**/
|
||||
|
Loading…
x
Reference in New Issue
Block a user