mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
updated for version 7.2-293
This commit is contained in:
parent
be1138baba
commit
d7d5b47dc7
@ -1026,12 +1026,14 @@ open_line(dir, flags, old_indent)
|
|||||||
int c = 0;
|
int c = 0;
|
||||||
int off = 0;
|
int off = 0;
|
||||||
|
|
||||||
for (p = lead_flags; *p && *p != ':'; ++p)
|
for (p = lead_flags; *p != NUL && *p != ':'; )
|
||||||
{
|
{
|
||||||
if (*p == COM_RIGHT || *p == COM_LEFT)
|
if (*p == COM_RIGHT || *p == COM_LEFT)
|
||||||
c = *p;
|
c = *p++;
|
||||||
else if (VIM_ISDIGIT(*p) || *p == '-')
|
else if (VIM_ISDIGIT(*p) || *p == '-')
|
||||||
off = getdigits(&p);
|
off = getdigits(&p);
|
||||||
|
else
|
||||||
|
++p;
|
||||||
}
|
}
|
||||||
if (c == COM_RIGHT) /* right adjusted leader */
|
if (c == COM_RIGHT) /* right adjusted leader */
|
||||||
{
|
{
|
||||||
|
@ -681,6 +681,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 */
|
||||||
|
/**/
|
||||||
|
293,
|
||||||
/**/
|
/**/
|
||||||
292,
|
292,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user