summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-03-13 19:08:48 +0000
committerBram Moolenaar <Bram@vim.org>2022-03-13 19:08:48 +0000
commit424da7aa481032f501158a671a0c1d117507afdd (patch)
treeb52f2d5a3cf8d4366f5b5f17032b1a5ccdca1453
parent5f823d1e73bdcc9417581b6b3587648a5bb98709 (diff)
patch 8.2.4561: build failure with some combination of featuresv8.2.4561
Problem: Build failure with some combination of features. (John Marriott) Solution: Adjust #ifdef.
-rw-r--r--src/mouse.c2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/mouse.c b/src/mouse.c
index c2bde6d16b..25d6fa89a1 100644
--- a/src/mouse.c
+++ b/src/mouse.c
@@ -3031,7 +3031,7 @@ mouse_find_win(int *rowp, int *colp, mouse_find_T popup UNUSED)
}
#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
index a1107934d7..2bc2cc48e3 100644
--- 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,