diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-02-04 19:01:31 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-02-04 19:01:31 +0100 |
commit | 28944fecff3c40b44325921d45aaf67451b0937f (patch) | |
tree | 93dd492972809af3b3db4428ef85fc6f5b34672d /src/gui.c | |
parent | 2c7b906afb86b986476cfc959732e433b1b4a3b1 (diff) | |
download | vim-git-28944fecff3c40b44325921d45aaf67451b0937f.tar.gz |
patch 8.0.1471: on MS-Windows CursorIM highlighting no longer worksv8.0.1471
Problem: On MS-Windows CursorIM highlighting no longer works.
Solution: Adjust #if statements. (Ken Takata)
Diffstat (limited to 'src/gui.c')
-rw-r--r-- | src/gui.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1137,13 +1137,13 @@ gui_update_cursor( if (id > 0) { cattr = syn_id2colors(id, &cfg, &cbg); -#if defined(FEAT_XIM) || defined(FEAT_HANGULIN) +#if defined(FEAT_MBYTE) || defined(FEAT_HANGULIN) { static int iid; guicolor_T fg, bg; if ( -# if defined(FEAT_GUI_GTK) && !defined(FEAT_HANGULIN) +# if defined(FEAT_GUI_GTK) && defined(FEAT_XIM) && !defined(FEAT_HANGULIN) preedit_get_status() # else im_get_status() |