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 d8cee76 commit f5f1b59Copy full SHA for f5f1b59
2 files changed
src/userfunc.c
@@ -875,7 +875,7 @@ get_function_body(
875
--end;
876
while (end > p && VIM_ISWHITE(*end))
877
878
- if (end > p - 2 && end[-1] == '=' && end[0] == '>')
+ if (end > p + 2 && end[-1] == '=' && end[0] == '>')
879
{
880
// found trailing "=> {", start of an inline function
881
if (nesting == MAX_FUNC_NESTING - 1)
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
+ 3171,
760
/**/
761
3170,
762
0 commit comments