patch 8.2.2253: Vim9: expr test fails
Problem: Vim9: expr test fails.
Solution: Add missing assignment.
diff --git a/src/userfunc.c b/src/userfunc.c
index 9393b62..a70870b 100644
--- a/src/userfunc.c
+++ b/src/userfunc.c
@@ -664,6 +664,8 @@
if (fp->uf_ret_type == NULL)
goto errret;
}
+ else
+ fp->uf_ret_type = &t_unknown;
}
fp->uf_lines = newlines;
diff --git a/src/version.c b/src/version.c
index d1bb9cc..a8e1a89 100644
--- a/src/version.c
+++ b/src/version.c
@@ -751,6 +751,8 @@
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 2253,
+/**/
2252,
/**/
2251,