patch 8.2.3171: another illegal memory access in test

Problem:    Another illegal memory access in test.
Solution:   Check pointer is after the start of the line.
diff --git a/src/userfunc.c b/src/userfunc.c
index d8c943b..3dfa680 100644
--- a/src/userfunc.c
+++ b/src/userfunc.c
@@ -875,7 +875,7 @@
 		--end;
 		while (end > p && VIM_ISWHITE(*end))
 		    --end;
-		if (end > p - 2 && end[-1] == '=' && end[0] == '>')
+		if (end > p + 2 && end[-1] == '=' && end[0] == '>')
 		{
 		    // found trailing "=> {", start of an inline function
 		    if (nesting == MAX_FUNC_NESTING - 1)