We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5245beb commit d8cee76Copy full SHA for d8cee76
2 files changed
src/userfunc.c
@@ -870,7 +870,7 @@ get_function_body(
870
end = p + STRLEN(p) - 1;
871
while (end > p && VIM_ISWHITE(*end))
872
--end;
873
- if (*end == '{')
+ if (end > p && *end == '{')
874
{
875
876
src/version.c
@@ -755,6 +755,8 @@ static char *(features[]) =
755
756
static int included_patches[] =
757
{ /* Add new patch number below this line */
758
+/**/
759
+ 3170,
760
/**/
761
3169,
762
0 commit comments