From ba7376678885a62fe0d5d0afa7fdb7dae01086ee Mon Sep 17 00:00:00 2001 From: Satoru Kitaguchi Date: Sun, 6 Apr 2025 16:04:59 +0200 Subject: [PATCH] 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 --- src/evalfunc.c | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) 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, /**/ -- 2.47.2