From ca2f7e7af32d51c2be378a5298bc85958c877653 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Thu, 31 Dec 2020 13:39:54 +0100 Subject: [PATCH] patch 8.2.2253: Vim9: expr test fails Problem: Vim9: expr test fails. Solution: Add missing assignment. --- src/userfunc.c | 2 ++ src/version.c | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/userfunc.c b/src/userfunc.c index 9393b62cc1..a70870baae 100644 --- a/src/userfunc.c +++ b/src/userfunc.c @@ -664,6 +664,8 @@ get_lambda_tv( 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 d1bb9cc8fc..a8e1a89296 100644 --- a/src/version.c +++ b/src/version.c @@ -750,6 +750,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 2253, /**/ 2252, /**/ -- 2.47.2