Mercurial > vim
changeset 13373:0802633a0b2d v8.0.1560
patch 8.0.1560: build failure without GUI on MS-Windows
commit https://github.com/vim/vim/commit/3767b61ad99fe6ff2cace2dccb5d35331786735f
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Mar 3 19:51:58 2018 +0100
patch 8.0.1560: build failure without GUI on MS-Windows
Problem: Build failure without GUI on MS-Windows.
Solution: Adjust #ifdef for vcol2col().
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sat, 03 Mar 2018 20:00:07 +0100 |
parents | 12bedecfc536 |
children | 9986f28dc657 |
files | src/ui.c src/version.c |
diffstat | 2 files changed, 4 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/ui.c +++ b/src/ui.c @@ -3246,7 +3246,8 @@ get_fpos_of_mouse(pos_T *mpos) #if defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_GTK) || defined(FEAT_GUI_MAC) \ || defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_MSWIN) \ - || defined(FEAT_GUI_PHOTON) || defined(FEAT_BEVAL) || defined(PROTO) + || defined(FEAT_GUI_PHOTON) || defined(FEAT_BEVAL) \ + || defined(FEAT_TERM_POPUP_MENU) || defined(PROTO) /* * Convert a virtual (screen) column to a character column. * The first column is one.