forked from aniani/vim
updated for version 7.0-109
This commit is contained in:
17
src/misc1.c
17
src/misc1.c
@@ -8074,9 +8074,20 @@ get_lisp_indent()
|
|||||||
}
|
}
|
||||||
if (*that == '"' && *(that + 1) != NUL)
|
if (*that == '"' && *(that + 1) != NUL)
|
||||||
{
|
{
|
||||||
that++;
|
while (*++that && *that != '"')
|
||||||
while (*that && (*that != '"' || *(that - 1) == '\\'))
|
{
|
||||||
++that;
|
/* skipping escaped characters in the string */
|
||||||
|
if (*that == '\\')
|
||||||
|
{
|
||||||
|
if (*++that == NUL)
|
||||||
|
break;
|
||||||
|
if (that[1] == NUL)
|
||||||
|
{
|
||||||
|
++that;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (*that == '(' || *that == '[')
|
if (*that == '(' || *that == '[')
|
||||||
++parencount;
|
++parencount;
|
||||||
|
|||||||
@@ -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 */
|
||||||
|
/**/
|
||||||
|
109,
|
||||||
/**/
|
/**/
|
||||||
108,
|
108,
|
||||||
/**/
|
/**/
|
||||||
|
|||||||
Reference in New Issue
Block a user