# HG changeset patch # User Bram Moolenaar # Date 1599341403 -7200 # Node ID a2d8535d035ad2cc743e20726f1ae65432972778 # Parent 9f0e6dabb1b0aaae6072360b0532c09c406ecd27 patch 8.2.1620: searchcount() test fails Commit: https://github.com/vim/vim/commit/4140c4f3fff1a441f2837f2f911ab0f0368e412a Author: Bram Moolenaar Date: Sat Sep 5 23:16:00 2020 +0200 patch 8.2.1620: searchcount() test fails Problem: searchcount() test fails. Solution: Restore default flag value. diff --git a/src/search.c b/src/search.c --- a/src/search.c +++ b/src/search.c @@ -4062,7 +4062,7 @@ f_searchcount(typval_T *argvars, typval_ char_u *pattern = NULL; int maxcount = SEARCH_STAT_DEF_MAX_COUNT; long timeout = SEARCH_STAT_DEF_TIMEOUT; - int recompute = FALSE; + int recompute = TRUE; searchstat_T stat; if (rettv_dict_alloc(rettv) == FAIL) diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -755,6 +755,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1620, +/**/ 1619, /**/ 1618,