Skip to content

Commit 3767b61

Browse files
committed
patch 8.0.1560: build failure without GUI on MS-Windows
Problem: Build failure without GUI on MS-Windows. Solution: Adjust #ifdef for vcol2col().
1 parent 658a154 commit 3767b61

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

src/ui.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3246,7 +3246,8 @@ get_fpos_of_mouse(pos_T *mpos)
32463246

32473247
#if defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_GTK) || defined(FEAT_GUI_MAC) \
32483248
|| defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_MSWIN) \
3249-
|| defined(FEAT_GUI_PHOTON) || defined(FEAT_BEVAL) || defined(PROTO)
3249+
|| defined(FEAT_GUI_PHOTON) || defined(FEAT_BEVAL) \
3250+
|| defined(FEAT_TERM_POPUP_MENU) || defined(PROTO)
32503251
/*
32513252
* Convert a virtual (screen) column to a character column.
32523253
* The first column is one.

src/version.c

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

779779
static int included_patches[] =
780780
{ /* Add new patch number below this line */
781+
/**/
782+
1560,
781783
/**/
782784
1559,
783785
/**/

0 commit comments

Comments
 (0)