Skip to content

Commit 3e44fbf

Browse files
committed
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 <cb@256bit.org>
1 parent e1a435c commit 3e44fbf

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

src/mouse.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -570,7 +570,7 @@ do_mouse(
570570
}
571571
return TRUE;
572572
}
573-
else if (is_drag && (in_tabpanel || (in_tab_line && TabPageIdxs != NULL))
573+
else if (is_drag && (in_tabpanel || (in_tab_line && TabPageIdxs != NULL)))
574574
{
575575
#if defined(FEAT_TABPANEL)
576576
if (in_tabpanel)

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -724,6 +724,8 @@ static char *(features[]) =
724724

725725
static int included_patches[] =
726726
{ /* Add new patch number below this line */
727+
/**/
728+
1655,
727729
/**/
728730
1654,
729731
/**/

0 commit comments

Comments
 (0)