From: Satoru Kitaguchi Date: Sun, 6 Apr 2025 14:04:59 +0000 (+0200) Subject: patch 9.1.1280: trailing additional semicolon in get_matches_in_str() X-Git-Tag: v9.1.1280^0 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ba7376678885a62fe0d5d0afa7fdb7dae01086ee;p=thirdparty%2Fvim.git patch 9.1.1280: trailing additional semicolon in get_matches_in_str() Problem: trailing additional semicolon in get_matches_in_str() (Hirohito Higashi) Solution: remove it (Satoru Kitaguchi) closes: #17066 Co-authored-by: Hirohito Higashi Signed-off-by: Satoru Kitaguchi Signed-off-by: Christian Brabandt --- diff --git a/src/evalfunc.c b/src/evalfunc.c index f2c69999ae..2aa516dc40 100644 --- a/src/evalfunc.c +++ b/src/evalfunc.c @@ -9164,7 +9164,7 @@ get_matches_in_str( if (d == NULL) return FAIL; if (list_append_dict(mlist, d) == FAIL) - return FAIL;; + return FAIL; if (dict_add_number(d, matchbuf ? "lnum" : "idx", idx) == FAIL) return FAIL; diff --git a/src/version.c b/src/version.c index eba6725ded..50743e0519 100644 --- a/src/version.c +++ b/src/version.c @@ -704,6 +704,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1280, /**/ 1279, /**/