mirror of
https://github.com/vim/vim.git
synced 2025-10-13 06:54:15 -04:00
updated for version 7.1-314
This commit is contained in:
@@ -243,7 +243,8 @@
|
|||||||
/* WV_ and BV_ values get typecasted to this for the "indir" field */
|
/* WV_ and BV_ values get typecasted to this for the "indir" field */
|
||||||
typedef enum
|
typedef enum
|
||||||
{
|
{
|
||||||
PV_NONE = 0
|
PV_NONE = 0,
|
||||||
|
PV_MAXVAL = 0xffff /* to avoid warnings for value out of range */
|
||||||
} idopt_T;
|
} idopt_T;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@@ -8713,7 +8714,7 @@ put_setstring(fd, cmd, name, valuep, expand)
|
|||||||
{
|
{
|
||||||
s = *valuep;
|
s = *valuep;
|
||||||
while (*s != NUL)
|
while (*s != NUL)
|
||||||
if (fputs((char *)str2special(&s, FALSE), fd) < 0)
|
if (put_escstr(fd, str2special(&s, FALSE), 2) == FAIL)
|
||||||
return FAIL;
|
return FAIL;
|
||||||
}
|
}
|
||||||
else if (expand)
|
else if (expand)
|
||||||
|
@@ -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 */
|
||||||
|
/**/
|
||||||
|
314,
|
||||||
/**/
|
/**/
|
||||||
313,
|
313,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user