# HG changeset patch # User Bram Moolenaar # Date 1647198903 -3600 # Node ID f4115d080c1b239e6eaad65cbb438b5d51f8fd54 # Parent fb5480e68f642123afb2f93c5824df732a1935ae patch 8.2.4561: build failure with some combination of features Commit: https://github.com/vim/vim/commit/424da7aa481032f501158a671a0c1d117507afdd Author: Bram Moolenaar Date: Sun Mar 13 19:08:48 2022 +0000 patch 8.2.4561: build failure with some combination of features Problem: Build failure with some combination of features. (John Marriott) Solution: Adjust #ifdef. diff --git a/src/mouse.c b/src/mouse.c --- a/src/mouse.c +++ b/src/mouse.c @@ -3031,7 +3031,7 @@ mouse_find_win(int *rowp, int *colp, mou } #if defined(NEED_VCOL2COL) || defined(FEAT_BEVAL) || defined(FEAT_PROP_POPUP) \ - || defined(PROTO) + || defined(FEAT_EVAL) || defined(PROTO) /* * Convert a virtual (screen) column to a character column. * The first column is one. diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -751,6 +751,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 4561, +/**/ 4560, /**/ 4559,