mirror of
https://github.com/vim/vim.git
synced 2025-09-27 04:14:06 -04:00
updated for version 7.1-042
This commit is contained in:
@@ -7108,7 +7108,7 @@ static struct fst
|
|||||||
{"getftype", 1, 1, f_getftype},
|
{"getftype", 1, 1, f_getftype},
|
||||||
{"getline", 1, 2, f_getline},
|
{"getline", 1, 2, f_getline},
|
||||||
{"getloclist", 1, 1, f_getqflist},
|
{"getloclist", 1, 1, f_getqflist},
|
||||||
{"getmatches", 0, 0, f_getmatches},
|
{"getmatches", 0, 0, f_getmatches},
|
||||||
{"getpos", 1, 1, f_getpos},
|
{"getpos", 1, 1, f_getpos},
|
||||||
{"getqflist", 0, 0, f_getqflist},
|
{"getqflist", 0, 0, f_getqflist},
|
||||||
{"getreg", 0, 2, f_getreg},
|
{"getreg", 0, 2, f_getreg},
|
||||||
@@ -12526,9 +12526,11 @@ f_matchadd(argvars, rettv)
|
|||||||
if (grp == NULL || pat == NULL)
|
if (grp == NULL || pat == NULL)
|
||||||
return;
|
return;
|
||||||
if (argvars[2].v_type != VAR_UNKNOWN)
|
if (argvars[2].v_type != VAR_UNKNOWN)
|
||||||
|
{
|
||||||
prio = get_tv_number_chk(&argvars[2], &error);
|
prio = get_tv_number_chk(&argvars[2], &error);
|
||||||
if (argvars[3].v_type != VAR_UNKNOWN)
|
if (argvars[3].v_type != VAR_UNKNOWN)
|
||||||
id = get_tv_number_chk(&argvars[3], &error);
|
id = get_tv_number_chk(&argvars[3], &error);
|
||||||
|
}
|
||||||
if (error == TRUE)
|
if (error == TRUE)
|
||||||
return;
|
return;
|
||||||
if (id >= 1 && id <= 3)
|
if (id >= 1 && id <= 3)
|
||||||
|
@@ -666,6 +666,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
42,
|
||||||
/**/
|
/**/
|
||||||
41,
|
41,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user