From: Christian Brabandt Date: Wed, 20 Aug 2025 18:56:53 +0000 (+0200) Subject: patch 9.1.1655: Build-failure in do_mouse() X-Git-Tag: v9.1.1655^0 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3e44fbf316f4feb9592050e9774711d2dc01245b;p=thirdparty%2Fvim.git patch 9.1.1655: Build-failure in do_mouse() Problem: Build-failure in do_mouse() (after v9.1.1653) Solution: Add missing closing paren Signed-off-by: Christian Brabandt --- diff --git a/src/mouse.c b/src/mouse.c index 86400448a8..8789eedc35 100644 --- a/src/mouse.c +++ b/src/mouse.c @@ -570,7 +570,7 @@ do_mouse( } return TRUE; } - else if (is_drag && (in_tabpanel || (in_tab_line && TabPageIdxs != NULL)) + else if (is_drag && (in_tabpanel || (in_tab_line && TabPageIdxs != NULL))) { #if defined(FEAT_TABPANEL) if (in_tabpanel) diff --git a/src/version.c b/src/version.c index 0d7d245c09..0e11d85c7d 100644 --- a/src/version.c +++ b/src/version.c @@ -724,6 +724,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1655, /**/ 1654, /**/