patch 9.1.1655: Build-failure in do_mouse() Commit: https://github.com/vim/vim/commit/3e44fbf316f4feb9592050e9774711d2dc01245b Author: Christian Brabandt <c...@256bit.org> Date: Wed Aug 20 20:56:53 2025 +0200
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 <c...@256bit.org> diff --git a/src/mouse.c b/src/mouse.c index 86400448a..8789eedc3 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 0d7d245c0..0e11d85c7 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, /**/ -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to vim_dev+unsubscr...@googlegroups.com. To view this discussion visit https://groups.google.com/d/msgid/vim_dev/E1uoo2V-009OYY-AI%40256bit.org.