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 e041dde commit 1321257Copy full SHA for 1321257
src/userfunc.c
@@ -901,7 +901,7 @@ get_function_body(
901
end = p + STRLEN(p) - 1;
902
while (end > p && VIM_ISWHITE(*end))
903
--end;
904
- if (end > p && *end == '{')
+ if (end > p + 1 && *end == '{' && VIM_ISWHITE(end[-1]))
905
{
906
int is_block;
907
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
+ 3273,
760
/**/
761
3272,
762
0 commit comments